cecon-interfaces
Version:
Interfaces de Projetos Cecon
26 lines (25 loc) • 804 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioCatalogShiftEntity = void 0;
var PayioCatalogShiftEntity = /** @class */ (function () {
function PayioCatalogShiftEntity(data) {
this.endTime = '23:59';
this.friday = true;
this.monday = true;
this.saturday = true;
this.startTime = '00:00';
this.sunday = true;
this.thursday = true;
this.tuesday = true;
this.wednesday = true;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioCatalogShiftEntity;
}());
exports.PayioCatalogShiftEntity = PayioCatalogShiftEntity;