8 lines
278 B
JavaScript
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; |