mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 19:28:17 +00:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
export class LastMileContainerAllocationDto {
|
|
containerId!: string;
|
|
vehicleId!: string;
|
|
}
|
|
|
|
export class AllocateLastMileContainersDto {
|
|
allocations!: LastMileContainerAllocationDto[];
|
|
}
|