ShopBot/state/post.py

9 lines
176 B
Python
Raw Permalink Normal View History

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