export interface RawPagination {
    count: number;
    pages: number;
    next: string;
    prev: string;
}
