issue # 이메일 인증 로직 구현 중

This commit is contained in:
geonhee-min
2025-11-21 16:31:33 +09:00
parent 6cd0361375
commit 8303a8ab19
9 changed files with 52 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
export class VerifyCodeResponseDto {
verified: boolean;
message?: string;
error?: string;
}