mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
22 lines (21 loc) • 748 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioResumeCompanyItemDetailEntity = void 0;
var PayioResumeCompanyItemDetailEntity = /** @class */ (function () {
// #endregion Properties (2)
// #region Constructors (1)
function PayioResumeCompanyItemDetailEntity(data) {
// #region Properties (2)
this.cords = [];
this.count = 0;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioResumeCompanyItemDetailEntity;
}());
exports.PayioResumeCompanyItemDetailEntity = PayioResumeCompanyItemDetailEntity;