export interface PaginationInstance {

    id?: string;
    itemsPerPage: number;
    currentPage: number;
    totalItems?: number;
}
