UNPKG

create-chuntianxiaozhu

Version:

春天小猪模板工具

13 lines (10 loc) 203 B
import { IsEmail, IsNotEmpty, IsString } from 'class-validator'; export class MergeAuthDto { @IsNotEmpty() @IsString() @IsEmail() email: string; @IsNotEmpty() @IsString() code: string; }