14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
import { IsEmail, IsNotEmpty } from 'class-validator';
|
|
|
|
/**
|
|
* 회원가입 인증번호 발송 DTO
|
|
*
|
|
* @export
|
|
* @class SendSignupCodeDto
|
|
*/
|
|
export class SendSignupCodeDto {
|
|
@IsEmail()
|
|
@IsNotEmpty()
|
|
userEmail: string;
|
|
}
|