mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 11:55:42 +00:00
11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import { IsUUID, IsOptional, IsInt, Min } from 'class-validator';
|
|
|
|
export class AssignContainerToWagonDto {
|
|
@IsUUID()
|
|
wagonId!: string;
|
|
|
|
@IsOptional()
|
|
@IsInt()
|
|
@Min(1)
|
|
position?: number;
|
|
} |