HealthSync_Intelligence/app/dto/response/celebration_response.py
hyerimmy 910bd902b1
Some checks failed
HealthSync Intelligence CI / build-and-push (push) Has been cancelled
feat : initial commit
2025-06-20 05:28:30 +00:00

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분 걷기 미션 완료! 건강한 하루를 만들어가시는 모습이 정말 멋져요! 💪✨"
}
}