comparison Simoleon/Models/CurrencyPairModel.swift @ 156:84137052813d

Refactor code
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Sat, 28 Aug 2021 11:15:25 +0100
parents
children
comparison
equal deleted inserted replaced
155:681f2cbe8c7f 156:84137052813d
1 //
2 // CurrencyPairModel.swift
3 // Simoleon
4 //
5 // Created by Dennis Concepción Martín on 26/8/21.
6 //
7
8 import Foundation
9
10 struct CurrencyPairModel {
11 /*
12 Forex pair -> XXX/YYY
13 Where XXX is the base currency, and YYY the quote currency
14 */
15
16 var baseSymbol: String
17 var quoteSymbol: String
18 }