export interface IPage<T> {
    data: T[];
    count: number;
}
