add decks documentation

This commit is contained in:
2023-07-16 23:23:46 +02:00
parent 971b165be8
commit 9c13a57804
21 changed files with 239 additions and 78 deletions

View File

@@ -12,3 +12,10 @@ export class PaginationDto {
@IsNumber()
itemsPerPage?: number
}
export class Pagination {
currentPage: number
itemsPerPage: number
totalPages: number
totalItems: number
}