Files
chat/backend/app/schemas/leaf.py
T
2026-06-13 17:57:43 +08:00

9 lines
194 B
Python

"""心情叶 Schema"""
from pydantic import BaseModel, Field
class LeafUpdate(BaseModel):
mood: str | None = Field(None, max_length=20)
note: str | None = Field(None, max_length=500)