Skip to content

Instantly share code, notes, and snippets.

@mikkipastel
Created April 6, 2017 13:53
Show Gist options
  • Save mikkipastel/a6070fe33a4932c95daecb6fa4ec949e to your computer and use it in GitHub Desktop.
Save mikkipastel/a6070fe33a4932c95daecb6fa4ec949e to your computer and use it in GitHub Desktop.
questionare in android app by firebase (model)
package com.mikkipastel.buslinebysukhum.model;
/**
* Created by acer on 10/1/2016.
*/
public class Message {
String feedbackType;
String feedbackTopic;
String feedbackDetail;
String timestamp;
String email;
public Message(String feedbackType,
String feedbackTopic,
String feedbackDetail,
String timestamp,
String email) {
this.feedbackType = feedbackType;
this.feedbackTopic = feedbackTopic;
this.feedbackDetail = feedbackDetail;
this.timestamp = timestamp;
this.email = email;
}
public String getFeedbackType() {
return feedbackType;
}
public void setFeedbackType(String feedbackType) {
this.feedbackType = feedbackType;
}
public String getFeedbackTopic() {
return feedbackTopic;
}
public void setFeedbackTopic(String feedbackTopic) {
this.feedbackTopic = feedbackTopic;
}
public String getFeedbackDetail() {
return feedbackDetail;
}
public void setFeedbackDetail(String feedbackDetail) {
this.feedbackDetail = feedbackDetail;
}
public String getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment