import { ApiProperty } from '@nestjs/swagger'; import { IsArray, IsInt, Min } from 'class-validator'; export class UpdateRolePermissionsDto { @ApiProperty({ type: [Number] }) @IsArray() @IsInt({ each: true }) @Min(1, { each: true }) permissionIds: number[]; }