Files
2025-11-14 13:46:20 +03:00

9 lines
184 B
Python

from aiogram.fsm.state import State, StatesGroup
class MailingSG(StatesGroup):
message_data = State()
recipients = State()
# mailing_date = State()
confirm = State()