mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-09 04:48:18 +00:00
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
import { IsOptional, IsString } from 'class-validator';
|
|
|
|
export class DeliverCargoDto {
|
|
@IsOptional()
|
|
@IsString()
|
|
deliveryRemarks?: string;
|
|
} |