scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
29 lines (28 loc) • 835 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MasterEntity = void 0;
var MasterEntity = /** @class */ (function () {
// #endregion Properties (9)
// #region Constructors (1)
function MasterEntity(data) {
// #region Properties (9)
this.catalog = null;
this.companyId = '';
this.containerId = '';
this.database = null;
this.hostName = null;
this.hostUrl = null;
this.masterV1 = null;
this.password = null;
this.userName = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return MasterEntity;
}());
exports.MasterEntity = MasterEntity;