view Simoleon/Models/CurrencyLatestRateModel.swift @ 187:13d5a8deb6c2

add AboutView and FavoritesView
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Thu, 23 Dec 2021 16:12:22 +0100
parents 1ebd1c5dd302
children
line wrap: on
line source

//
//  CurrencyConversionModel.swift
//  Simoleon
//
//  Created by Dennis Concepción Martín on 21/12/21.
//

import Foundation

struct CurrencyLatestRateResponse: Codable {
    var message: [CurrencyLatestRateResult]
}

struct CurrencyLatestRateResult: Codable {
    var rate: Double
    var timestamp: Int
}