mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 05:25:41 +00:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { IsUUID, IsOptional, IsInt, Min } from 'class-validator';
|
|
|
|
export class AssignWagonToTrainDto {
|
|
@IsUUID()
|
|
trainId!: string;
|
|
|
|
@IsOptional()
|
|
@IsInt()
|
|
@Min(1)
|
|
sequenceNumber?: number;
|
|
} |