diff LazyBear/Views/Company/Networking/ChartResponse.swift @ 414:b93172662988

Implement networking KeyStats
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Wed, 09 Jun 2021 10:57:25 +0200
parents f843c6382529
children 4effac4733b0
line wrap: on
line diff
--- a/LazyBear/Views/Company/Networking/ChartResponse.swift	Wed Jun 09 10:23:52 2021 +0200
+++ b/LazyBear/Views/Company/Networking/ChartResponse.swift	Wed Jun 09 10:57:25 2021 +0200
@@ -11,10 +11,13 @@
     var historicalPrices: [HistoricalPricesModel]?
     var quote: [String: QuoteModel]?
     var latestNews: [LatestNewsModel]?
+    var keyStats: KeyStatsModel?
     
     private enum CodingKeys : String, CodingKey {
         case historicalPrices = "historical_prices"
         case quote
         case latestNews = "latest_news"
+        case keyStats = "key_stats"
     }
 }
+