13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
|
|
/**
|
||
|
|
* 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;
|