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