mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 21:50:57 +00:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import { IsOptional, IsString } from 'class-validator';
|
|
|
|
export class UpdateContainerItemDto {
|
|
@IsString()
|
|
@IsOptional()
|
|
containerNumber?: string | null;
|
|
}
|