from __future__ import annotations import uuid from pydantic import BaseModel, ConfigDict class UserResponse(BaseModel): model_config = ConfigDict(from_attributes=True) id: uuid.UUID email: str display_name: str timezone: str is_active: bool is_admin: bool must_change_password: bool class MeResponse(UserResponse): auth_mode: str