8 lines
127 B
Python
8 lines
127 B
Python
import pydantic
|
|
|
|
|
|
class TelegramLoginInput(pydantic.BaseModel):
|
|
telegram_id: int
|
|
username: str | None
|
|
chat_id: int
|