6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
|
export interface CreateInspectionPointResultCommand {
|
||
|
inspectionId: string;
|
||
|
inspectionPointId: string;
|
||
|
value: string;
|
||
|
}
|