diff options
Diffstat (limited to 'client/app/videos/shared/pagination.model.ts')
-rw-r--r-- | client/app/videos/shared/pagination.model.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/app/videos/shared/pagination.model.ts b/client/app/videos/shared/pagination.model.ts new file mode 100644 index 000000000..06f7a7875 --- /dev/null +++ b/client/app/videos/shared/pagination.model.ts | |||
@@ -0,0 +1,5 @@ | |||
1 | export interface Pagination { | ||
2 | currentPage: number; | ||
3 | itemsPerPage: number; | ||
4 | total: number; | ||
5 | } | ||