mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 04:15:43 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
export class FirstMileContainerAllocationDto {
|
|
containerId!: string;
|
|
vehicleId!: string;
|
|
}
|
|
|
|
export class AllocateFirstMileContainersDto {
|
|
allocations!: FirstMileContainerAllocationDto[];
|
|
}
|