mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 14:38:12 +00:00
9 lines
271 B
TypeScript
9 lines
271 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsUUID } from 'class-validator';
|
|
|
|
export class AvailableLocomotivesQueryDto {
|
|
@ApiProperty({ format: 'uuid', description: 'Route used to filter locomotives at the origin yard' })
|
|
@IsUUID()
|
|
routeId!: string;
|
|
}
|