mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
20 lines (19 loc) • 621 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GeneralResumeTotalEntity = void 0;
var GeneralResumeTotalEntity = /** @class */ (function () {
function GeneralResumeTotalEntity(data) {
this.amount = 0;
this.count = 0;
this.avarageAmount = 0;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GeneralResumeTotalEntity;
}());
exports.GeneralResumeTotalEntity = GeneralResumeTotalEntity;