diff Simoleon/Models/CurrencyQuoteModel.swift @ 16:aec2e86e5dbd

Change design and icon
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Thu, 15 Jul 2021 19:03:24 +0100
parents a62e5e4a4f02
children 4a81e39186f1
line wrap: on
line diff
--- a/Simoleon/Models/CurrencyQuoteModel.swift	Thu Jul 15 10:58:29 2021 +0100
+++ b/Simoleon/Models/CurrencyQuoteModel.swift	Thu Jul 15 19:03:24 2021 +0100
@@ -2,13 +2,12 @@
 //  CurrencyQuoteModel.swift
 //  Simoleon
 //
-//  Created by Dennis Concepción Martín on 11/07/2021.
+//  Created by Dennis Concepción Martín on 15/07/2021.
 //
 
 import SwiftUI
 
 struct CurrencyQuoteModel: Codable, Hashable {
-    var id: UUID?
     var symbol: String?
     var price: Float?
     var bid: Float?
@@ -23,4 +22,3 @@
         case timeStamp = "t"
     }
 }
-extension CurrencyQuoteModel: Identifiable {}