mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
20 lines
309 B
TypeScript
20 lines
309 B
TypeScript
import { IsNumber, Min, IsOptional, IsString } from 'class-validator';
|
|
|
|
export class LoadCargoDto {
|
|
@IsNumber()
|
|
@Min(0.001)
|
|
quantity!: number;
|
|
|
|
@IsNumber()
|
|
@Min(0)
|
|
weight!: number;
|
|
|
|
@IsOptional()
|
|
@IsNumber()
|
|
@Min(0)
|
|
volume?: number;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
description?: string;
|
|
} |