Skip to content

Instantly share code, notes, and snippets.

@amit-bhandari
Created April 14, 2019 14:22
Show Gist options
  • Save amit-bhandari/270a77f50be490976ca702e2d80b0682 to your computer and use it in GitHub Desktop.
Save amit-bhandari/270a77f50be490976ca702e2d80b0682 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