mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 09:14:07 +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'
|