import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';

export class DeleteUserDto {
  @IsNotEmpty()
  @IsString()
  @ApiProperty({ required: true, type: String, description: 'Username' })
  username: string;

  @IsNotEmpty()
  @IsString()
  @ApiProperty({ required: true, type: String, description: 'Password' })
  password: string;
}
