mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 17:24:06 +00:00
13 lines
191 B
Python
13 lines
191 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
from dataclasses import dataclass
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class Group():
|
||
|
chat_id: str
|
||
|
group_name: str
|
||
|
users_count: int
|
||
|
|
||
|
default_name: str = 'default'
|