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

export class AssignUserDto {
  @ApiProperty({ example: 5, description: 'ID of the user to assign' })
  @IsInt()
  @IsPositive()
  userId!: number;
}
