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