You've already forked Travel-Agent
18 lines
322 B
Python
18 lines
322 B
Python
__all__ = ("RegistrationForm",)
|
|
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class RegistrationForm(StatesGroup):
|
|
username = State()
|
|
age = State()
|
|
bio = State()
|
|
sex = State()
|
|
location = State()
|
|
|
|
|
|
class UserAltering(StatesGroup):
|
|
message_id = State()
|
|
column = State()
|
|
value = State()
|