token-wizard-test-automation/entity/Whitelist.js

16 lines
302 B
JavaScript

const Logger= require('../entity/Logger.js');
const logger=Logger.logger;
const tempOutputPath=Logger.tempOutputPath;
class Whitelist {
constructor(address, min, max) {
this.address = address;
this.min = min;
this.max = max;
}
}
module.exports.Whitelist=Whitelist;