From d168b7bf3e051abb5aebb6f497b47fafe973e274 Mon Sep 17 00:00:00 2001 From: Azrael <48294321+Azrael07@users.noreply.github.com> Date: Sat, 26 Aug 2023 15:12:33 +0400 Subject: [PATCH] Added AED currency support --- iWallet/Model/CurrencyModel.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iWallet/Model/CurrencyModel.swift b/iWallet/Model/CurrencyModel.swift index 9e1d0a0..10e4490 100644 --- a/iWallet/Model/CurrencyModel.swift +++ b/iWallet/Model/CurrencyModel.swift @@ -8,6 +8,7 @@ import Foundation enum Currency: String, CaseIterable, Identifiable, Hashable { + case aed = "AED" case usd = "USD" case eur = "EUR" case jpy = "JPY" @@ -45,6 +46,7 @@ enum Currency: String, CaseIterable, Identifiable, Hashable { var symbol: String { let currencySymbols: [Currency: String] = [ + .aed: "AED", .usd: "$", .eur: "€", .jpy: "¥",