Mercurial > public > lazybear
comparison LazyBear/Views/Company/Networking/InsidersResponse.swift @ 403:48b3d2a410d4
Implementing Insiders.swift
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sun, 23 May 2021 19:00:00 +0200 |
parents | |
children | c804ce7a1560 |
comparison
equal
deleted
inserted
replaced
402:8357b101df67 | 403:48b3d2a410d4 |
---|---|
1 // | |
2 // InsidersResponse.swift | |
3 // LazyBear | |
4 // | |
5 // Created by Dennis Concepción Martín on 23/5/21. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct InsidersResponse: Codable { | |
11 var insiderSummary: [SummaryInsiderModel]? | |
12 | |
13 private enum CodingKeys: String, CodingKey { | |
14 case insiderSummary = "insider_summary" | |
15 } | |
16 } |