17 lines
454 B
JavaScript
17 lines
454 B
JavaScript
|
|
/**
|
||
|
|
* RentPropertyCondition Enum
|
||
|
|
* Furniture condition of the property
|
||
|
|
* Sent as `propertyType` field in API
|
||
|
|
*/
|
||
|
|
const RentPropertyCondition = Object.freeze({
|
||
|
|
WITH_FURNITURE: 0,
|
||
|
|
WITHOUT_FURNITURE: 1,
|
||
|
|
});
|
||
|
|
|
||
|
|
const RentPropertyConditionLabels = Object.freeze({
|
||
|
|
[RentPropertyCondition.WITH_FURNITURE]: 'مفروش',
|
||
|
|
[RentPropertyCondition.WITHOUT_FURNITURE]: 'غير مفروش',
|
||
|
|
});
|
||
|
|
|
||
|
|
export { RentPropertyCondition, RentPropertyConditionLabels };
|