import { Filter } from "./filter.model";
import { Sort } from "./sort.model";
export interface HttpParam {
    url: string;
    filters?: Filter[] | any;
    page?: number;
    pageSize?: number;
    sortBy?: Sort[];
    id?: any;
    method?: 'POST' | 'GET' | 'PUT' | 'DELETE';
}
