Files
Fulfillment-Backend/schemas/user.py
2024-04-12 07:34:21 +03:00

9 lines
168 B
Python

from schemas.base import CustomModelCamel
class UserSchema(CustomModelCamel):
id: int
telegram_id: int
phone_number: str | None = None
is_admin: bool