cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
22 lines (21 loc) • 685 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettingTaxesEntity = void 0;
var GlobalSettingTaxesEntity = /** @class */ (function () {
// #endregion Properties (1)
// #region Constructors (1)
function GlobalSettingTaxesEntity(data) {
// #region Properties (1)
this.id = '';
this.fees = [];
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GlobalSettingTaxesEntity;
}());
exports.GlobalSettingTaxesEntity = GlobalSettingTaxesEntity;