import { Pagination } from './pagination.interface'; export interface PaginatedResponse { list: T[]; pagination: Pagination; }