cecon-interfaces
Version:
Interfaces de Projetos Cecon
25 lines (24 loc) • 772 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ResumeItemDetailEntity = void 0;
var ResumeItemDetailEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function ResumeItemDetailEntity(data) {
// #region Properties (5)
this.cords = [];
this.count = 0;
this.orderItemsCount = 0;
this.totalAmount = 0;
this.totalDiscount = 0;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return ResumeItemDetailEntity;
}());
exports.ResumeItemDetailEntity = ResumeItemDetailEntity;