comparison Simoleon/Models/SupportedCurrencyModel.swift @ 183:d2398f02e1ce

implement unit currency selector
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Mon, 20 Dec 2021 12:28:16 +0100
parents
children
comparison
equal deleted inserted replaced
182:ba3ebe8cefe5 183:d2398f02e1ce
1 //
2 // SupportedCurrencyModel.swift
3 // Simoleon
4 //
5 // Created by Dennis Concepción Martín on 8/12/21.
6 //
7
8 import Foundation
9
10 struct SupportedCurrencyResponse: Codable {
11 var currencies: [SupportedCurrencyResult]
12 }
13
14 struct SupportedCurrencyResult: Codable, Hashable {
15 var code: String
16 var name: String
17 var isCrypto: Int
18 }