import { IsInt, IsOptional, IsString, Max, Min } from 'class-validator'; export class UpdateProgressDto { @IsInt() @Min(0) @Max(100) progress!: number; @IsString() @IsOptional() comment?: string; }