import { ApiProperty } from '@nestjs/swagger';
import { IsArray, IsInt } from 'class-validator';

export class WaitlistDenyDto {
  @ApiProperty({ type: [Number], description: 'Registration IDs to deny from the waitlist' })
  @IsArray()
  @IsInt({ each: true })
  registrationIds: number[];
}
