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

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

  @ApiProperty({ type: 'string', format: 'binary', required: true })
  image: any;
}
