import { ApiProperty } from '@nestjs/swagger'; import { IsInt, IsOptional, Min, } from 'class-validator'; export class UpdatePositionDto { @ApiProperty({ required: false }) @IsOptional() @IsInt() @Min(0) indexVal?: number; @ApiProperty({ required: false, nullable: true }) @IsOptional() @IsInt() @Min(1) countryId?: number | null; @ApiProperty({ required: false, nullable: true }) @IsOptional() @IsInt() @Min(1) categoryId?: number | null; }