12345678910111213141516 |
- package uprrp.tania.models;
-
- public class AnsweredQuestionModel {
- // NOTE these attribute must have the same names as the JSON fields we'll be sending to the server
- private final String id_question;
- private final String question_answer;
- private final String start_datetime;
- private final String end_datetime;
-
- public AnsweredQuestionModel(String id, String answer, String startDatetime, String endDatetime) {
- this.id_question = id;
- this.question_answer = answer;
- this.start_datetime = startDatetime;
- this.end_datetime = endDatetime;
- }
- }
|