UNPKG

cecon-interfaces

Version:
21 lines (20 loc) 606 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExchangeEntity = void 0; var ExchangeEntity = /** @class */ (function () { function ExchangeEntity() { // #region Properties (9) this.batchId = null; this.collectedAt = new Date(); this.createAt = new Date(); this.id = ''; this.name = ''; this.price = 0; this.symbol = ''; this.updatedAt = new Date(); this.urlApi = ''; // #endregion Properties (9) } return ExchangeEntity; }()); exports.ExchangeEntity = ExchangeEntity;