export interface IPagination {
  page: number;
  limit: number;
  offset: number;
}
