""" Type stub — kds.py has `from models.user import User` for the type annotation on Depends(get_current_user). At runtime the dependency returns a SimpleNamespace from auth.py; this class satisfies the import without pulling in the full SQLAlchemy model. """ class User: id: int email: str name: str is_admin: bool kitchen_id: int caps: list