export interface PaginationContext {
    pageSize?: number;
    pageNumber?: number;
    offset?: number;
    totalSize?: number;
}
