aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/app/videos/shared/pagination.model.ts
blob: 06f7a787555ba8fdaa49ce31cf0d63fbdfe1ee21 (plain) (blame)
1
2
3
4
5
export interface Pagination {
  currentPage: number;
  itemsPerPage: number;
  total: number;
}