view Simoleon/Models/CurrencyQuoteModel.swift @ 154:8afba86ab8dd

Refactor code
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Wed, 25 Aug 2021 10:43:12 +0100
parents 4a81e39186f1
children 0c589138a6f3
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 symbol: String?
    var price: Double?
    var bid: Double?
    var ask: Double?
    var timeStamp: Int?
    
    private enum CodingKeys: String, CodingKey {
        case symbol = "s"
        case price = "p"
        case bid = "b"
        case ask = "a"
        case timeStamp = "t"
    }
}