ShopBot/state/checkout.py

12 lines
240 B
Python
Raw Normal View History

2022-06-04 22:02:51 +03:00
from aiogram.dispatcher.filters.state import StatesGroup, State
class Checkout(StatesGroup):
first_name = State()
last_name = State()
phone_number = State()
address = State()
loaded = State()
finish = State()