diff --git a/maxapi/types/command.py b/maxapi/types/command.py index e04559b..0625d19 100644 --- a/maxapi/types/command.py +++ b/maxapi/types/command.py @@ -40,4 +40,19 @@ class BotCommand(BaseModel): """ name: str - description: Optional[str] = None \ No newline at end of file + description: Optional[str] = None + + +class CommandStart(Command): + + """ + Класс для представления команды /start бота. + + Attributes: + prefix (str): Префикс команды. По умолчанию '/'. + """ + + text = 'start' + + def __init__(self, prefix: str = '/'): + self.prefix = prefix \ No newline at end of file