InvestmentTrackerApp/PortfolioJournal/Utilities/CurrencyPicker.swift

10 lines
176 B
Swift

import Foundation
enum CurrencyPicker {
static let commonCodes: [String] = [
"EUR", "USD", "GBP", "CHF", "JPY",
"CAD", "AUD", "SEK", "NOK", "DKK"
]
}