Mercurial > public > simoleon
view Simoleon/Models/CurrencyQuoteModel.swift @ 162:f5de15e06c77
Refactor code
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 31 Aug 2021 13:04:28 +0100 |
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" } }