aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/rest/rest-pagination.ts
blob: 0cfa4f4681aee7bcb4102d057d9da20f203e7c6e (plain) (blame)
1
2
3
4
5
export interface RestPagination {
  currentPage: number;
  itemsPerPage: number;
  totalItems: number;
};