Mercurial > public > lazybear
view LazyBear/Views/Profile/Networking/ProfileResponse.swift @ 421:9b7af8e83d12
Change intraday prices model
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sat, 12 Jun 2021 15:20:04 +0200 |
parents | 6802c2393203 |
children | 4effac4733b0 |
line wrap: on
line source
// // ProfileResponse.swift // LazyBear // // Created by Dennis Concepción Martín on 16/4/21. // import SwiftUI struct ProfileResponse: Codable { var intradayPrices: [String: [Double]]? var quotes: [String: QuoteModel]? private enum CodingKeys : String, CodingKey { case intradayPrices = "intraday_prices" case quotes } }