Mercurial > public > simoleon
view Simoleon/Models/CurrencyQuoteModel.swift @ 170:f4e0c414cf6d
minor UI changes
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 23 Sep 2021 15:14:48 +0200 |
parents | 0c589138a6f3 |
children |
line wrap: on
line source
// // CurrencyQuoteModel.swift // Simoleon // // Created by Dennis Concepción Martín on 15/07/2021. // import Foundation struct CurrencyQuoteModel: Codable, Hashable { var pair: String? var price: Double? var bid: Double? var ask: Double? var timeStamp: Int? private enum CodingKeys: String, CodingKey { case pair = "s" case price = "p" case bid = "b" case ask = "a" case timeStamp = "t" } }