cecon-interfaces
Version:
Interfaces de Projetos Cecon
25 lines (24 loc) • 821 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioBigChefConfigPrinterEntity = void 0;
var PayioBigChefConfigPrinterEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function PayioBigChefConfigPrinterEntity(data) {
// #region Properties (5)
this.active = true;
this.brand = null;
this.interface = 'USB';
this.model = null;
this.port = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioBigChefConfigPrinterEntity;
}());
exports.PayioBigChefConfigPrinterEntity = PayioBigChefConfigPrinterEntity;