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

13 lines
304 B
JavaScript
Raw Normal View History

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