Mercurial > public > lazybear
view LazyBear/Global Models/IntradayPricesModel.swift @ 343:ab909fc9ce55
Implement batch requests HomeView
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Tue, 06 Apr 2021 11:04:21 +0200 |
parents | a6c49f1409f3 |
children | 80bfa88c6b0f |
line wrap: on
line source
// // IntradayPricesModel.swift // LazyBear // // Created by Dennis Concepción Martín on 3/4/21. // import SwiftUI struct IntradayPricesBatch: Codable { var intradayprices: [IntradayPricesResult] } struct IntradayPricesResult: Codable { var open: Double? }