Доработан RequestContact

This commit is contained in:
Денис Семёнов 2025-07-19 17:02:47 +03:00
parent bd06b33343
commit df383665dc

View File

@ -1,8 +1,18 @@
from typing import Optional
from ....enums.button_type import ButtonType
from .button import Button
class RequestContact(Button):
class RequestContactButton(Button):
"""
Кнопка с контактом.
Кнопка с контактом
Args:
text: Текст кнопки
"""
...
type: ButtonType = ButtonType.REQUEST_CONTACT
text: str