ShopBot/state/post.py

10 lines
197 B
Python
Raw Normal View History

2022-06-04 22:02:51 +03:00
from aiogram.dispatcher.filters.state import StatesGroup, State
class Post(StatesGroup):
name = State()
description = State()
price = State()
image = State()
finish = State()