export interface PageResult<T> {
  count: number;
  items: T[];
  nextPageLink: string;
}
