Mercurial > public > lazybear
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LazyBear/Views/Company/Networking/InsidersResponse.swift Sun May 23 19:00:00 2021 +0200 @@ -0,0 +1,16 @@ +// +// InsidersResponse.swift +// LazyBear +// +// Created by Dennis Concepción Martín on 23/5/21. +// + +import SwiftUI + +struct InsidersResponse: Codable { + var insiderSummary: [SummaryInsiderModel]? + + private enum CodingKeys: String, CodingKey { + case insiderSummary = "insider_summary" + } +}