scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
25 lines (24 loc) • 730 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ResumeTotalEntity = void 0;
var ResumeTotalEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function ResumeTotalEntity(data) {
// #region Properties (5)
this.average = 0;
this.collectionName = '';
this.count = 0;
this.total = 0;
this.years = [];
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return ResumeTotalEntity;
}());
exports.ResumeTotalEntity = ResumeTotalEntity;