cecon-interfaces
Version:
Interfaces de Projetos Cecon
24 lines (23 loc) • 817 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettingEntity = void 0;
var global_setting_iugu_entity_1 = require("./global-setting-iugu.entity");
var GlobalSettingEntity = /** @class */ (function () {
// #endregion Properties (1)
// #region Constructors (1)
function GlobalSettingEntity(data) {
// #region Properties (1)
this.iugu = new global_setting_iugu_entity_1.GlobalSettingIuguEntity();
this.billingDays = 3;
this.id = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GlobalSettingEntity;
}());
exports.GlobalSettingEntity = GlobalSettingEntity;