import { ApiProperty } from '@nestjs/swagger'; import { IsEmail } from 'class-validator'; export class ForgetPasswordDTO { @IsEmail() @ApiProperty() username: string; }