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