scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
23 lines (22 loc) • 649 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppInfoEntity = void 0;
var AppInfoEntity = /** @class */ (function () {
// #endregion Properties (3)
// #region Constructors (1)
function AppInfoEntity(data) {
// #region Properties (3)
this.appId = '';
this.name = '';
this.version = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return AppInfoEntity;
}());
exports.AppInfoEntity = AppInfoEntity;