from pydantic import BaseModel from typing import Optional class ProfileUpdate(BaseModel): display_name: Optional[str] = None theme: Optional[str] = None