2025-12-04 10:04:21 +08:00

11 lines
197 B
Python

from typing import Optional
from app.models.domain.rwmodel import RWModel
class Profile(RWModel):
username: str
bio: str = ""
image: Optional[str] = None
following: bool = False