12 lines
246 B
JavaScript
12 lines
246 B
JavaScript
/**
|
|
* Created by strawmanbobi
|
|
* 2016-11-27
|
|
*/
|
|
|
|
ServiceResponse = require("./service_response");
|
|
function ProtocolResponse(status, entity) {
|
|
this.entity = entity;
|
|
ServiceResponse.call(this, status);
|
|
}
|
|
|
|
module.exports = ProtocolResponse; |