package com.example.cosmosclient.entities; public class Feature { private String genre; private int code; private Location location = new Location(); public String getGenre() { return genre; } public void setGenre(String genre) { this.genre = genre; } public void setCode(int code){ this.code = code; } public int getCode(){ return this.code; } public void setLocation(Location location){ this.location = location; } public Location getLocation(){ return this.location; } }