mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 12:18:11 +00:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
export class ContainerAllocationDto {
|
|
containerId!: string;
|
|
vehicleId!: string;
|
|
}
|
|
|
|
export class AllocateContainersDto {
|
|
allocations!: ContainerAllocationDto[];
|
|
}
|