export interface PaginationInfo {
    total: number;
    per: number;
    currentPage: number;
    totalPages: number;
}
