fashionAvenue / server / src / auth / dto / auth.dto.ts
auth.dto.ts
Raw
import { IsNotEmpty, IsString } from 'class-validator';

export class AuthDto {
  @IsNotEmpty()
  @IsString()
  username: string;

  @IsNotEmpty()
  @IsString()
  password: string;
}