scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
26 lines (25 loc) • 842 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SubscriptionCompanyProfileEntity = void 0;
var SubscriptionCompanyProfileEntity = /** @class */ (function () {
// #endregion Properties (6)
// #region Constructors (1)
function SubscriptionCompanyProfileEntity(data) {
// #region Properties (6)
this.containerId = '';
this.doc = '';
this.docType = '';
this.id = '';
this.imageUrl = '';
this.name = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return SubscriptionCompanyProfileEntity;
}());
exports.SubscriptionCompanyProfileEntity = SubscriptionCompanyProfileEntity;