2025-05-14 09:13:47 +02:00
|
|
|
import type { EquipmentTypeViewModel } from "@/viewmodels/admin/unit/equipmentType/equipmentType.models";
|
2025-05-13 12:16:39 +02:00
|
|
|
import { inspectionPlanDemoData } from "./inspectionPlan";
|
2025-03-26 16:56:07 +01:00
|
|
|
|
|
|
|
export const equipmentTypeDemoData: Array<EquipmentTypeViewModel> = [
|
|
|
|
{
|
|
|
|
id: "xyz",
|
|
|
|
type: "B-Schlauch",
|
|
|
|
description: "Shläuche vom Typ B",
|
2025-05-13 12:16:39 +02:00
|
|
|
inspectionPlans: [inspectionPlanDemoData[0], inspectionPlanDemoData[1]],
|
2025-03-26 16:56:07 +01:00
|
|
|
},
|
|
|
|
];
|