states.py 299 B

123456789101112131415161718
  1. from aiogram.dispatcher.filters.state import StatesGroup, State
  2. class RegisterStates(StatesGroup):
  3. FIO = State()
  4. phone = State()
  5. class BookingState(StatesGroup):
  6. start = State()
  7. time = State()
  8. description = State()
  9. class SendBugState(StatesGroup):
  10. send_bug = State()