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

14 lines
222 B
Python

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