Skip to content

Instantly share code, notes, and snippets.

@miquelbeltran
Created September 25, 2016 17:33
Show Gist options
  • Save miquelbeltran/65ecc7a63ebd8f1bc59ad7e5b6142d1d to your computer and use it in GitHub Desktop.
Save miquelbeltran/65ecc7a63ebd8f1bc59ad7e5b6142d1d to your computer and use it in GitHub Desktop.
public class WeatherRealm extends RealmObject {
@PrimaryKey
private String name;
private Double temp;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Double getTemp() {
return temp;
}
public void setTemp(Double temp) {
this.temp = temp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment