view Simoleon/Models/CurrencyLatestRateModel.swift @ 190:fd04c445482a

remove funding
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Thu, 06 Jan 2022 12:09:12 +0000
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
}