export interface IPage<T, C> {
    data: Array<T>;
    nextCursor: C | null;
    hasNextPage: boolean;
}
