feat(api): add current page to AllUserResponse and fix returning type

This commit is contained in:
2025-06-24 13:12:31 +05:00
parent a3ee18f6fd
commit 18bb79262c
2 changed files with 3 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ class AllUserResponse(Base):
users: List[AllUser]
amount_count: int
amount_pages: int
current_page: int
all_user_adapter = TypeAdapter(List[AllUser])