INIT
This commit is contained in:
13
backend/src/auth/dto/send-signup-code.dto.ts
Normal file
13
backend/src/auth/dto/send-signup-code.dto.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { IsEmail, IsNotEmpty } from 'class-validator';
|
||||
|
||||
/**
|
||||
* 회원가입 인증번호 발송 DTO
|
||||
*
|
||||
* @export
|
||||
* @class SendSignupCodeDto
|
||||
*/
|
||||
export class SendSignupCodeDto {
|
||||
@IsEmail()
|
||||
@IsNotEmpty()
|
||||
userEmail: string;
|
||||
}
|
||||
Reference in New Issue
Block a user