Files
private-cloud/private-console/response/remote_index_response.js
2025-10-28 10:30:20 +08:00

12 lines
252 B
JavaScript

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