Files
portalweb-api/src/products/dto/exposed-product.dto.ts
2025-04-02 18:13:47 -03:00

16 lines
315 B
TypeScript

// 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;
}