Files
private-cloud/console/response/single_category_response.js
2020-01-12 19:15:08 +08:00

12 lines
258 B
JavaScript

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