Mercurial > public > lazybear
view LazyBear/Global Models/QuoteModel.swift @ 457:c6913f0ce46e
Minor UI Updates
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Mon, 28 Jun 2021 14:03:50 +0200 |
parents | c79a3ed3d230 |
children |
line wrap: on
line source
// // QuoteModel.swift // LazyBear // // Created by Dennis Concepción Martín on 21/4/21. // import SwiftUI struct QuoteModel: Codable { var companyName: String var latestPrice: Double? var changePercent: Double? var intradayPrices: [Double]? }