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

12 lines
253 B
JavaScript

/**
* Created by strawmanbobi
* 2016-12-24 (Xmas eve)
*/
ServiceResponse = require("./service_response");
function TicketResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = TicketResponse;