UNPKG

scheunemann-interfaces

Version:
22 lines (21 loc) 664 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CustomVariableEntity = void 0; var CustomVariableEntity = /** @class */ (function () { // #endregion Properties (2) // #region Constructors (1) function CustomVariableEntity(data) { // #region Properties (2) this.name = ''; this.value = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return CustomVariableEntity; }()); exports.CustomVariableEntity = CustomVariableEntity;