import { IsEmail, IsNotEmpty, IsString, MinLength } from 'class-validator'; export class RegisterDto { @IsString() @IsNotEmpty() name: string; @IsString() @IsNotEmpty() username: string; @IsEmail() @IsNotEmpty() email: string; @MinLength(6) password: string; }