export class CommandTemplate{ private _filename: string; private _template: string; constructor(filename: string, template: string){ this._filename = filename; this._template = template; } get filename(){ return this._filename; } get template(){ return this._template; } }