-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathCurrencyCodes.cs
124 lines (123 loc) · 2.47 KB
/
CurrencyCodes.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#region Copyright Syncfusion® Inc. 2001-2025.
// Copyright Syncfusion® Inc. 2001-2025. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syncfusion.ZugFerd
{
/// <summary>
/// Currency Codes
/// </summary>
public enum CurrencyCodes
{
AED = 784,
AFN = 971,
ALL = 8,
AMD = 51,
ARS = 32,
AUD = 36,
AZN = 944,
BAM = 977,
BDT = 50,
BGN = 975,
BHD = 48,
BND = 96,
BOB = 68,
BRL = 986,
BYR = 974,
BZD = 84,
CAD = 124,
CHF = 756,
CLP = 152,
CNY = 156,
COP = 170,
CRC = 188,
CZK = 203,
DKK = 208,
DOP = 214,
DZD = 12,
EEK = 233,
EGP = 818,
ETB = 230,
EUR = 978,
GBP = 826,
GEL = 981,
GTQ = 320,
HKD = 344,
HNL = 340,
HRK = 191,
HUF = 348,
IDR = 360,
ILS = 376,
INR = 356,
IQD = 368,
IRR = 364,
ISK = 352,
JMD = 388,
JOD = 400,
JPY = 392,
KES = 404,
KGS = 417,
KHR = 116,
KRW = 410,
KWD = 414,
KZT = 398,
LAK = 418,
LBP = 422,
LKR = 144,
LTL = 440,
LVL = 428,
LYD = 434,
MAD = 504,
MKD = 807,
MNT = 496,
MOP = 446,
MVR = 462,
MXN = 484,
MYR = 458,
NIO = 558,
NOK = 578,
NPR = 524,
NZD = 554,
OMR = 512,
PAB = 590,
PEN = 604,
PHP = 608,
PKR = 586,
PLN = 985,
PYG = 600,
QAR = 634,
RON = 946,
RSD = 941,
RUB = 643,
RWF = 646,
SAR = 682,
SEK = 752,
SGD = 702,
SYP = 760,
THB = 764,
TJS = 972,
TND = 788,
TRY = 949,
TTD = 780,
TWD = 901,
UAH = 980,
USD = 840,
UYU = 858,
UZS = 860,
VEF = 937,
VND = 704,
XOF = 952,
YER = 886,
ZAR = 710,
ZWL = 932,
Unknown = 0
}
}