17 lines
524 B
JavaScript
17 lines
524 B
JavaScript
const SalePropertiesStatus = Object.freeze({
|
|
PENDING: 0,
|
|
CONFIRMED: 1,
|
|
});
|
|
|
|
const SalePropertiesStatusLabels = Object.freeze({
|
|
[SalePropertiesStatus.PENDING]: 'قيد الانتظار',
|
|
[SalePropertiesStatus.CONFIRMED]: 'مؤكد',
|
|
});
|
|
|
|
const SalePropertiesStatusTranslationKeys = Object.freeze({
|
|
[SalePropertiesStatus.PENDING]: 'saleStatus.pending',
|
|
[SalePropertiesStatus.CONFIRMED]: 'saleStatus.confirmed',
|
|
});
|
|
|
|
export { SalePropertiesStatus, SalePropertiesStatusLabels, SalePropertiesStatusTranslationKeys };
|