import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty } from 'class-validator';

export class CreateLinkAttributeToProductDto {
  @ApiProperty({ required: true })
  @IsNotEmpty()
  optionId: number;

  @ApiProperty({ required: true })
  @IsNotEmpty()
  productId: string;
}
