Files
Fulfillment-Backend/schemas/auth.py
2024-07-20 09:32:22 +03:00

14 lines
243 B
Python

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