view Simoleon/Models/SupportedCurrencyModel.swift @ 191:d7878ac18e3f

Change info files
author Dennis <dennis@denniscm.com>
date Fri, 11 Aug 2023 18:33:32 +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
}