export interface IPaginatedResult { items: T[]; page: number; hasNextPage: boolean; totalItems: number; totalPages: number; }