Initial commit
This commit is contained in:
8
src/systemData/inspectionResult.js
Normal file
8
src/systemData/inspectionResult.js
Normal file
@ -0,0 +1,8 @@
|
||||
function InspectionResult(decision, description, tcpEndPoint, secureTcpEndPoint) {
|
||||
this.decision = decision;
|
||||
this.description = description;
|
||||
this.tcpEndPoint = tcpEndPoint || null;
|
||||
this.secureTcpEndPoint = secureTcpEndPoint || null;
|
||||
}
|
||||
|
||||
module.exports = InspectionResult;
|
Reference in New Issue
Block a user