2026-03-29 15:27:48 +00:00
|
|
|
/**
|
|
|
|
|
* RentPropertyType Enum
|
|
|
|
|
* Sent as `type` field in RentPropertyDto
|
|
|
|
|
*/
|
|
|
|
|
const RentPropertyType = Object.freeze({
|
|
|
|
|
FURNISHED: 0,
|
|
|
|
|
UNFURNISHED: 1,
|
|
|
|
|
SEMI_FURNISHED: 2,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const RentPropertyTypeLabels = Object.freeze({
|
|
|
|
|
[RentPropertyType.FURNISHED]: 'مفروش بالكامل',
|
|
|
|
|
[RentPropertyType.UNFURNISHED]: 'غير مفروش',
|
|
|
|
|
[RentPropertyType.SEMI_FURNISHED]: 'مفروش جزئياً',
|
|
|
|
|
});
|
|
|
|
|
|
2026-07-01 15:43:58 +03:00
|
|
|
const RentPropertyTypeTranslationKeys = Object.freeze({
|
|
|
|
|
[RentPropertyType.FURNISHED]: 'rentPropertyType.fullyFurnished',
|
|
|
|
|
[RentPropertyType.UNFURNISHED]: 'rentPropertyType.unfurnished',
|
|
|
|
|
[RentPropertyType.SEMI_FURNISHED]: 'rentPropertyType.partiallyFurnished',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export { RentPropertyType, RentPropertyTypeLabels, RentPropertyTypeTranslationKeys };
|