Mercurial > public > simoleon
view Simoleon/Models/SupportedCurrencyModel.swift @ 188:e4f5dcf4d596
add keyboard resign option
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 23 Dec 2021 16:23:16 +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 }