15 lines
160 B
Python
15 lines
160 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Token(BaseModel):
|
|
token: str
|
|
code: int
|
|
name: str
|
|
email: str
|
|
msg: str
|
|
|
|
|
|
|