mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
11 lines
260 B
Python
11 lines
260 B
Python
|
class MMInterfaceData:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class MMInterfaceDataTelegram(MMInterfaceData):
|
||
|
def __init__(self, chat_id: int, message_id: int):
|
||
|
super().__init__()
|
||
|
self.chat_id = chat_id
|
||
|
self.message_id = message_id
|