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