feat: added activations history

This commit is contained in:
ITQ
2025-01-26 12:09:36 +03:00
parent 545201e4dd
commit 523a23ea72
2 changed files with 66 additions and 3 deletions
+9
View File
@@ -136,3 +136,12 @@ class CommentDeletedOut(Schema):
class PromocodeActivateOut(Schema):
promo: str
class ActivationsHistoryFilters(Schema):
limit: int = Field(
10, ge=0, description="Limit must be greater than or equal 0"
)
offset: int = Field(
0, ge=0, description="Offset must be greater than or equal to 0"
)