changed telegram_id

This commit is contained in:
2024-08-20 17:59:13 +03:00
parent f05d39f808
commit be7fb8d77a

View File

@@ -1,3 +1,5 @@
from typing import Optional
from schemas.base import BaseSchema, CustomModelSnake
@@ -6,7 +8,7 @@ class AuthLoginRequest(CustomModelSnake):
first_name: str
hash: str
id: int
photo_url: str
photo_url: Optional[str]
class AuthLoginResponse(BaseSchema):