| 12345678910111213141516171819 | from aiogram.dispatcher.filters.state import StatesGroup, Stateclass RegisterStates(StatesGroup):    FIO = State()    phone = State()class BookingState(StatesGroup):    owner = State()    time = State()    description = State()    group = State()    persons = State()class DateRangeState(StatesGroup):    date = State()
 |