view Simoleon/Models/SupportedCurrencyModel.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 d2398f02e1ce
children
line wrap: on
line source

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

import Foundation

struct SupportedCurrencyResponse: Codable {
    var currencies: [SupportedCurrencyResult]
}

struct SupportedCurrencyResult: Codable, Hashable {
    var code: String
    var name: String
    var isCrypto: Int
}