Mercurial > public > simoleon
view 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 |
line wrap: on
line source
// // CurrencyPairModel.swift // Simoleon // // Created by Dennis Concepción Martín on 26/8/21. // import Foundation struct CurrencyPairModel { /* Forex pair -> XXX/YYY Where XXX is the base currency, and YYY the quote currency */ var baseSymbol: String var quoteSymbol: String }