Skip to content
Snippets Groups Projects
create-user.dto.ts 172 B
Newer Older
  • Learn to ignore specific revisions
  • import { IsEmail, IsNotEmpty } from 'class-validator';
    
    export class CreateUserDto {
      @IsNotEmpty() readonly password: string;
      @IsNotEmpty() @IsEmail() email: string;
    }