From e730008323bfd3e1fa29b981b12ddd2b0d134057 Mon Sep 17 00:00:00 2001 From: shinrei Date: Tue, 1 Jul 2025 15:54:55 +0000 Subject: [PATCH] input msg --- src/bot/modules/solaris/structures/input_message.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/bot/modules/solaris/structures/input_message.py 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