This commit is contained in:
2024-04-12 07:34:21 +03:00
parent 5c81af05d5
commit be623a3555
12 changed files with 513 additions and 93 deletions

8
schemas/user.py Normal file
View File

@@ -0,0 +1,8 @@
from schemas.base import CustomModelCamel
class UserSchema(CustomModelCamel):
id: int
telegram_id: int
phone_number: str | None = None
is_admin: bool