14 lines
222 B
Python
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
|