Mercurial > public > lazybear
comparison LazyBear/Global Models/QuoteModel.swift @ 348:0abb8d5c12ec
Merge pull request #12 from DennisTechnologies/dennis
Implementing Prop API
committer: GitHub <noreply@github.com>
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sun, 11 Apr 2021 19:56:04 +0200 |
parents | LazyBear/Global Models/CompanyQuoteModel.swift@a6c49f1409f3 LazyBear/Global Models/CompanyQuoteModel.swift@80bfa88c6b0f |
children | f3cb5bdea8e5 |
comparison
equal
deleted
inserted
replaced
347:2132a211820d | 348:0abb8d5c12ec |
---|---|
1 // | |
2 // QuoteModel.swift | |
3 // LazyBear | |
4 // | |
5 // Created by Dennis Concepción Martín on 11/4/21. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct QuoteModel: Codable, Hashable { | |
11 var companyName: String | |
12 var symbol: String | |
13 var latestPrice: Double | |
14 var changePercent: Double | |
15 } |