"""Pydantic schemas for Chair endpoints."""

from sqlmodel import SQLModel


class ChairRead(SQLModel):
    id: str
    table_id: str
    slot_index: int
    side: str
    enabled: bool


class ChairUpdate(SQLModel):
    """Partial update — only ``enabled`` can be toggled."""

    enabled: bool
