UNPKG

create-chuntianxiaozhu

Version:

春天小猪模板工具

17 lines (13 loc) 257 B
import { IsEmail, IsNotEmpty, IsString } from 'class-validator'; export class RegisterDto { @IsNotEmpty() @IsString() @IsEmail() email: string; @IsNotEmpty() @IsString() password: string; @IsNotEmpty() @IsString() authCode: string; }