16 lines
352 B
Python
16 lines
352 B
Python
"""
|
|
HealthSync AI 미션 추천 요청 DTO
|
|
"""
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class MissionRecommendRequest(BaseModel):
|
|
"""미션 추천 요청 DTO"""
|
|
user_id: int = Field(..., description="사용자 ID")
|
|
|
|
class Config:
|
|
json_schema_extra = {
|
|
"example": {
|
|
"user_id": 1
|
|
}
|
|
} |