-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
d8643b3
commit 7de4b20
Showing
1 changed file
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
namespace Mollie.Api.Models { | ||
public static class Currency { | ||
public static string AUD = nameof(AUD); | ||
public static string BGN = nameof(BGN); | ||
public static string CAD = nameof(CAD); | ||
public static string HRK = nameof(HRK); | ||
public static string CZK = nameof(CZK); | ||
public static string DKK = nameof(DKK); | ||
public static string HKD = nameof(HKD); | ||
public static string HUF = nameof(HUF); | ||
public static string ISK = nameof(ISK); | ||
public static string ILS = nameof(ILS); | ||
public static string JPY = nameof(JPY); | ||
public static string NOK = nameof(NOK); | ||
public static string PLN = nameof(PLN); | ||
public static string GBP = nameof(GBP); | ||
public static string RON = nameof(RON); | ||
public static string SEK = nameof(SEK); | ||
public static string CHF = nameof(CHF); | ||
public static string USD = nameof(USD); | ||
public static string EUR = nameof(EUR); | ||
public const string AUD = nameof(AUD); | ||
public const string BGN = nameof(BGN); | ||
public const string CAD = nameof(CAD); | ||
public const string HRK = nameof(HRK); | ||
public const string CZK = nameof(CZK); | ||
public const string DKK = nameof(DKK); | ||
public const string HKD = nameof(HKD); | ||
public const string HUF = nameof(HUF); | ||
public const string ISK = nameof(ISK); | ||
public const string ILS = nameof(ILS); | ||
public const string JPY = nameof(JPY); | ||
public const string NOK = nameof(NOK); | ||
public const string PLN = nameof(PLN); | ||
public const string GBP = nameof(GBP); | ||
public const string RON = nameof(RON); | ||
public const string SEK = nameof(SEK); | ||
public const string CHF = nameof(CHF); | ||
public const string USD = nameof(USD); | ||
public const string EUR = nameof(EUR); | ||
} | ||
} | ||
} |