2026-03-29 15:27:48 +00:00
|
|
|
/**
|
|
|
|
|
* Currency Enum
|
|
|
|
|
* Currency IDs used in the backend
|
|
|
|
|
*/
|
|
|
|
|
const Currency = Object.freeze({
|
|
|
|
|
SYP: 1,
|
|
|
|
|
USD: 2,
|
2026-05-25 21:27:39 +03:00
|
|
|
EUR: 3,
|
|
|
|
|
TRY: 4,
|
2026-03-29 15:27:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const CurrencyLabels = Object.freeze({
|
|
|
|
|
[Currency.SYP]: 'ليرة سورية',
|
|
|
|
|
[Currency.USD]: 'دولار أمريكي',
|
2026-05-25 21:27:39 +03:00
|
|
|
[Currency.EUR]: 'يورو',
|
|
|
|
|
[Currency.TRY]: 'ليرة تركية',
|
2026-03-29 15:27:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const CurrencySymbols = Object.freeze({
|
|
|
|
|
[Currency.SYP]: 'SYP',
|
|
|
|
|
[Currency.USD]: 'USD',
|
2026-05-25 21:27:39 +03:00
|
|
|
[Currency.EUR]: 'EUR',
|
|
|
|
|
[Currency.TRY]: 'TRY',
|
2026-03-29 15:27:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export { Currency, CurrencyLabels, CurrencySymbols };
|