Mercurial > public > simoleon
view Simoleon/Models/CurrencyLatestRateModel.swift @ 195:7b009649a063 default tip
Move to mercurial
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 03 Jun 2025 14:43:48 +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 }