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