// src/products/dto/exposed-product.dto.ts import { IsString, IsNumber, IsOptional } from 'class-validator'; export class ExposedProductDto { @IsString() readonly productId: string; @IsOptional() @IsString() readonly location?: string; @IsOptional() @IsNumber() readonly exposureTime?: number; }