UNPKG

cecon-interfaces

Version:
21 lines (20 loc) 625 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCashEntity = void 0; var PaymentCashEntity = /** @class */ (function () { // #endregion Properties (1) // #region Constructors (1) function PaymentCashEntity(data) { // #region Properties (1) this.changeFor = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PaymentCashEntity; }()); exports.PaymentCashEntity = PaymentCashEntity;