SendQuestionsModel.java 666 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.cygnusa.hyperm;
  2. import java.util.List;
  3. public class SendQuestionsModel {
  4. private String qid;
  5. private String aqid;
  6. private List<String> options = null;
  7. private final static long serialVersionUID = -8913103511927611128L;
  8. public String getQid() {
  9. return qid;
  10. }
  11. public void setQid(String qid) {
  12. this.qid = qid;
  13. }
  14. public String getAqid() {
  15. return aqid;
  16. }
  17. public void setAqid(String aqid) {
  18. this.aqid = aqid;
  19. }
  20. public List<String> getOptions() {
  21. return options;
  22. }
  23. public void setOptions(List<String> options) {
  24. this.options = options;
  25. }
  26. }