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