import { ApiProperty } from '@nestjs/swagger'; import { IsNotEmpty, IsString, MinLength } from 'class-validator'; export class ResetPasswordDto { @ApiProperty({ minLength: 8 }) @IsString() @IsNotEmpty() @MinLength(8) newPassword!: string; }