scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
26 lines (25 loc) • 799 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InstallationAppEntity = void 0;
var app_1 = require("../../app");
var InstallationAppEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function InstallationAppEntity(data) {
// #region Properties (5)
this.iconUrl = '';
this.id = '';
this.mode = app_1.EAppMode.NATI_GO;
this.name = '';
this.version = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return InstallationAppEntity;
}());
exports.InstallationAppEntity = InstallationAppEntity;