10 lines
197 B
Python
10 lines
197 B
Python
|
from aiogram.dispatcher.filters.state import StatesGroup, State
|
||
|
|
||
|
class Post(StatesGroup):
|
||
|
name = State()
|
||
|
description = State()
|
||
|
price = State()
|
||
|
image = State()
|
||
|
|
||
|
finish = State()
|