Files
FascioSchoolBot/app/bot/dialogs/flows/new_event/states.py
2025-10-03 14:09:43 +03:00

10 lines
231 B
Python

from aiogram.fsm.state import State, StatesGroup
class NewEventSG(StatesGroup):
input_title = State()
input_description = State()
input_start_date = State()
input_end_date = State()
confirm_creation = State()