All checks were successful
Build frontend / build (push) Successful in 39s
- Add RentPropertyCondition (WithFurniture/WithoutFurniture) - Add RentPropertyType (Furnished/Unfurnished/SemiFurnished) - Add RentType (Monthly/Daily) - Add PropertyService (13 services for detailsJSON) - Add PropertyTerm (NoSmoking/NoAnimals/NoParties) - Add Currency (SYP/USD) - Update enums barrel file
17 lines
293 B
JavaScript
17 lines
293 B
JavaScript
/**
|
|
* RentType Enum
|
|
* Rental period type
|
|
* Sent as `rentType` field in API
|
|
*/
|
|
const RentType = Object.freeze({
|
|
MONTHLY: 0,
|
|
DAILY: 1,
|
|
});
|
|
|
|
const RentTypeLabels = Object.freeze({
|
|
[RentType.MONTHLY]: 'شهري',
|
|
[RentType.DAILY]: 'يومي',
|
|
});
|
|
|
|
export { RentType, RentTypeLabels };
|