diff LazyBear/Views/Company/Networking/InsidersResponse.swift @ 411:681fb377235e

Implementing insider transactions
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Mon, 07 Jun 2021 20:59:52 +0200
parents c804ce7a1560
children a7c9dd0c5822
line wrap: on
line diff
--- a/LazyBear/Views/Company/Networking/InsidersResponse.swift	Sun Jun 06 19:07:52 2021 +0200
+++ b/LazyBear/Views/Company/Networking/InsidersResponse.swift	Mon Jun 07 20:59:52 2021 +0200
@@ -9,8 +9,10 @@
 
 struct InsidersResponse: Codable {
     var insiderRoster: [InsiderRosterModel]?
+    var insiderTransactions: [InsiderTransactionModel]?
     
     private enum CodingKeys: String, CodingKey {
         case insiderRoster = "insider_roster"
+        case insiderTransactions
     }
 }