Files
edr-platform/apps/edr-freight-api/src/modules/last-mile/dto/allocate-containers.dto.ts
natib21 6fa315db0f fix
2026-06-29 14:45:22 +00:00

9 lines
192 B
TypeScript

export class LastMileContainerAllocationDto {
containerId!: string;
vehicleId!: string;
}
export class AllocateLastMileContainersDto {
allocations!: LastMileContainerAllocationDto[];
}