Skip to content

Instantly share code, notes, and snippets.

@amit-bhandari
Last active April 14, 2019 13:47
Show Gist options
  • Save amit-bhandari/891dd3cbf4bc5b9d16f025e109fb3d46 to your computer and use it in GitHub Desktop.
Save amit-bhandari/891dd3cbf4bc5b9d16f025e109fb3d46 to your computer and use it in GitHub Desktop.
public class Quote{
private String quote;
private String author;
private String category;
public String getQuote() {
return quote;
}
public void setQuote(String quote) {
this.quote = quote;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment