9 lines
193 B
Python
9 lines
193 B
Python
from aiogram.dispatcher.filters.state import StatesGroup, State
|
|
|
|
|
|
class Checkout(StatesGroup):
|
|
first_name = State()
|
|
last_name = State()
|
|
phone_number = State()
|
|
address = State()
|