Files
Fulfillment-Backend/schemas/auth.py
2024-03-31 07:36:35 +03:00

14 lines
255 B
Python

from schemas.base import CustomModelCamel, CustomModelSnake
class AuthLoginRequest(CustomModelSnake):
auth_date: int
first_name: str
hash: str
id: int
photo_url: str
class AuthLoginResponse(CustomModelCamel):
access_token: str