comparison Simoleon/Models/CurrencyDetailsModel.swift @ 152:2584fd74235a

Add new currencies
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Mon, 23 Aug 2021 17:14:14 +0100
parents
children 8afba86ab8dd
comparison
equal deleted inserted replaced
151:bdedd0cc6cd1 152:2584fd74235a
1 //
2 // CurrencyDetailsModel.swift
3 // Simoleon
4 //
5 // Created by Dennis Concepción Martín on 23/8/21.
6 //
7
8 import Foundation
9
10
11 struct CurrencyDetailsModel: Codable {
12 var name: String
13 var flag: String
14 var isCrypto: Bool
15 }