2025-05-29 10:31:40 +02:00
|
|
|
export interface CreateInspectionCommand {
|
|
|
|
context: string;
|
|
|
|
nextInspection?: Date;
|
|
|
|
inspectionPlanId: string;
|
|
|
|
relatedId: string;
|
2025-07-10 13:22:29 +02:00
|
|
|
assigned: "vehicle" | "equipment" | "wearable";
|
2025-05-29 10:31:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateInspectionCommand {
|
|
|
|
id: string;
|
|
|
|
context: string;
|
|
|
|
nextInspection?: Date;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DeleteInspectionCommand {
|
|
|
|
id: string;
|
|
|
|
}
|