Skip to content

Instantly share code, notes, and snippets.

@amit-bhandari
Created April 14, 2019 14:57
Show Gist options
  • Save amit-bhandari/a6aa16dc7fbbfc1d6727c7e0ca673ec4 to your computer and use it in GitHub Desktop.
Save amit-bhandari/a6aa16dc7fbbfc1d6727c7e0ca673ec4 to your computer and use it in GitHub Desktop.
@Entity
public class Quote{
@PrimaryKey(autoGenerate = true)
private int id=0;
private String quote;
private String author;
private String category;
public String getQuote() {
return quote;
}
public void setQuote(String quote) {
this.quote = quote;
}
//getter setters omitted for brevity
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment