Mercurial > public > lazybear
comparison LazyBear/Views/Global Helpers/Extensive List/ExtensiveList.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 | 5f21f7c23c5e |
children |
comparison
equal
deleted
inserted
replaced
420:523b780ad892 | 421:9b7af8e83d12 |
---|---|
8 import SwiftUI | 8 import SwiftUI |
9 | 9 |
10 struct ExtensiveList: View { | 10 struct ExtensiveList: View { |
11 var listName: String | 11 var listName: String |
12 var list: [String: QuoteModel]? | 12 var list: [String: QuoteModel]? |
13 var intradayPrices: [String: [IntradayPriceModel]]? | 13 var intradayPrices: [String: [Double]]? |
14 var latestCurrencies: [String: CurrencyModel]? | 14 var latestCurrencies: [String: CurrencyModel]? |
15 var addOnDelete: Bool | 15 var addOnDelete: Bool |
16 | 16 |
17 @Environment(\.presentationMode) private var presentationMode | 17 @Environment(\.presentationMode) private var presentationMode |
18 @Environment(\.managedObjectContext) private var moc | 18 @Environment(\.managedObjectContext) private var moc |