/**
 * Generic structure representing a RouterOS response.
 *
 * Since the RouterOS API returns a flexible set of key-value pairs,
 * this interface captures any possible properties dynamically.
 * It's typically parsed from lines like `=key=value`.
 */
export interface IRosGenericResponse {
    [propName: string]: any;
}
