17 lines
515 B
Python
17 lines
515 B
Python
# app/dto/response/celebration_response.py
|
|
"""
|
|
HealthSync AI 미션 축하 응답 DTO
|
|
"""
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class CelebrationResponse(BaseModel):
|
|
"""미션 축하 응답 DTO"""
|
|
congratsMessage: str = Field(..., description="축하 메시지")
|
|
|
|
class Config:
|
|
json_schema_extra = {
|
|
"example": {
|
|
"congratsMessage": "🎉 30분 걷기 미션 완료! 건강한 하루를 만들어가시는 모습이 정말 멋져요! 💪✨"
|
|
}
|
|
} |