UNPKG

cecon-interfaces

Version:
24 lines (23 loc) 757 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioDeviceChefEntity = void 0; var PayioDeviceChefEntity = /** @class */ (function () { // #endregion Properties (4) // #region Constructors (1) function PayioDeviceChefEntity(data) { // #region Properties (4) this.chefConfigId = null; this.chefConfigName = null; this.scheduleId = null; this.scheduleName = null; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioDeviceChefEntity; }()); exports.PayioDeviceChefEntity = PayioDeviceChefEntity;