issue # 회원가입 로직 구현 완료

This commit is contained in:
민건희
2025-11-23 23:02:45 +09:00
parent 8303a8ab19
commit dce509bad9
15 changed files with 1108 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
import { IsString } from "@nestjs/class-validator";
export class LoginRequestDto {
type: 'email' | 'accountId';
@IsString()
id: string;
@IsString()
password: string;
}