260706_1_계정, 로그인, 보안 초안 작성

This commit is contained in:
2026-07-07 19:17:13 +09:00
parent 404941c47a
commit f8633bb1fe
4696 changed files with 6110 additions and 642171 deletions
+13
View File
@@ -0,0 +1,13 @@
"""기술지원 문의 요청 데이터 모델."""
from pydantic import BaseModel, EmailStr, Field
class SupportRequestPayload(BaseModel):
"""기술지원 문의 요청"""
name: str = Field(..., min_length=1, max_length=255, description="작성자 이름")
email: EmailStr = Field(..., description="작성자 이메일")
phone: str | None = Field(None, max_length=30, description="작성자 연락처")
subject: str = Field(..., min_length=1, max_length=255, description="문의 제목")
message: str = Field(..., min_length=1, max_length=5000, description="문의 내용")