Files
shveitechbot/misc/states.py

13 lines
234 B
Python

from aiogram.fsm.state import StatesGroup, State
class CheckoutStorage(StatesGroup):
name = State()
phone = State()
address = State()
confirmation = State()
class PaymentStorage(StatesGroup):
refresh = State()