Files
BOTKlining/doners/Shop-bot/states/product_state.py
2025-06-08 20:55:08 +09:00

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()