"""States for user registration process."""

from aiogram.fsm.state import StatesGroup, State


class RegistrationState(StatesGroup):
    """States for the multi-step registration process."""

    waiting_for_channel_join = State()
    waiting_for_full_name = State()
    waiting_for_phone = State()
    waiting_for_role = State()