91990f9
1
2
3
4
5
6
7
from pydantic import BaseModel from typing import Optional class ProfileUpdate(BaseModel): display_name: Optional[str] = None theme: Optional[str] = None