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

export class SetTantiemesDto {
  @ApiProperty() @IsUUID() repartitionKeyId!: string;

  @ApiProperty({ example: 150 })
  @IsInt()
  @Min(0)
  quota!: number;
}
