diff --git a/src/bot/modules/solaris/structures/input_message.py b/src/bot/modules/solaris/structures/input_message.py new file mode 100644 index 0000000..7e35d48 --- /dev/null +++ b/src/bot/modules/solaris/structures/input_message.py @@ -0,0 +1,10 @@ +from pydantic import BaseModel +from typing import Optional + +class InputMessage(BaseModel): + time: str + message_id: int + text: str + user_id: int + username: Optional[str] # хуйня я не помню зачем жт надо, наверное first_name важнее будет + reply_to: Optional[int] \ No newline at end of file