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

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