Files
private-cloud/private-console/response/integer_response.js

12 lines
244 B
JavaScript
Raw Normal View History

/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function IntegerResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = IntegerResponse;