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

14 lines
345 B
Python

"""时光胶囊 Schema"""
from datetime import datetime
from pydantic import BaseModel, Field
class CapsuleCreate(BaseModel):
recipient_id: str
title: str = Field(..., min_length=1, max_length=100)
content: str = Field(..., min_length=1, max_length=5000)
unlock_at: datetime
mood: str | None = Field(None, max_length=20)