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

export class AssignUserDto {
  @ApiProperty({ description: 'ID of the user to assign as beneficiary of this registration' })
  @IsInt()
  @Min(1)
  userId: number;
}
