typedef enum PropertyType {                     
   Unit,
   TownHouse,
   Mansion
} PropertyType;

typedef struct {                           
   NSString *address;
   PropertyType type;
   double weeklyRentalPrice;
} RentalProperty;
