node-eventstore-client/src/systemData/inspectionResult.js
2018-07-09 10:27:12 -07:00

8 lines
278 B
JavaScript

function InspectionResult(decision, description, tcpEndPoint, secureTcpEndPoint) {
this.decision = decision;
this.description = description;
this.tcpEndPoint = tcpEndPoint || null;
this.secureTcpEndPoint = secureTcpEndPoint || null;
}
module.exports = InspectionResult;