states.py 281 B

1234567891011121314
  1. from aiogram.dispatcher.filters.state import StatesGroup, State
  2. class RegisterStates(StatesGroup):
  3. FIO = State()
  4. phone = State()
  5. class BookingState(StatesGroup):
  6. owner = State()
  7. time = State()
  8. description = State()
  9. group = State()
  10. persons = State()