Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akexorcist/9780281 to your computer and use it in GitHub Desktop.
Save akexorcist/9780281 to your computer and use it in GitHub Desktop.
Model Class
public class QuizModel {
public String strQuiz = null;
public String strAnwser = null;
public QuizModel(String strQuiz, String strAnwser) {
this.strQuiz = strQuiz;
this.strAnwser = strAnwser;
}
public String getQuiz() {
return this.strQuiz;
}
public String getAnswer() {
return this.strAnswer;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment