11 lines
253 B
Python
11 lines
253 B
Python
from aiogram.dispatcher.filters.state import StatesGroup, State
|
|
|
|
class ProductState(StatesGroup):
|
|
title = State()
|
|
body = State()
|
|
image = State()
|
|
price = State()
|
|
confirm = State()
|
|
|
|
class CategoryState(StatesGroup):
|
|
title = State() |