UNPKG

scheunemann-interfaces

Version:
23 lines (22 loc) 649 B
"use strict"; 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;