10 lines
231 B
Python
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()
|