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