18 lines
339 B
TypeScript
18 lines
339 B
TypeScript
|
export interface CreateInspectionCommand {
|
||
|
context: string;
|
||
|
nextInspection?: Date;
|
||
|
inspectionPlanId: string;
|
||
|
relatedId: string;
|
||
|
assigned: "vehicle" | "equipment";
|
||
|
}
|
||
|
|
||
|
export interface UpdateInspectionCommand {
|
||
|
id: string;
|
||
|
context: string;
|
||
|
nextInspection?: Date;
|
||
|
}
|
||
|
|
||
|
export interface DeleteInspectionCommand {
|
||
|
id: string;
|
||
|
}
|