node-eventstore-client/src/systemData/inspectionResult.js

8 lines
278 B
JavaScript
Raw Normal View History

2016-03-09 20:46:15 +00:00
function InspectionResult(decision, description, tcpEndPoint, secureTcpEndPoint) {
this.decision = decision;
this.description = description;
this.tcpEndPoint = tcpEndPoint || null;
this.secureTcpEndPoint = secureTcpEndPoint || null;
}
module.exports = InspectionResult;