Skip to content

Instantly share code, notes, and snippets.

@aasif1297
Created March 10, 2020 13:16
Show Gist options
  • Save aasif1297/86d19cdd942bf3c8272168c3909835b0 to your computer and use it in GitHub Desktop.
Save aasif1297/86d19cdd942bf3c8272168c3909835b0 to your computer and use it in GitHub Desktop.
Comment
package com.cs.androidanimations.model;
public class Comment {
private Integer commentPersonPictureRes;
private String commentPersonName;
private String commentText;
private String commentDate;
public Comment(Integer commentPersonPictureRes, String commentPersonName, String commentText, String commentDate) {
this.commentPersonPictureRes = commentPersonPictureRes;
this.commentPersonName = commentPersonName;
this.commentText = commentText;
this.commentDate = commentDate;
}
public Integer getCommentPersonPictureRes() {
return commentPersonPictureRes;
}
public void setCommentPersonPictureRes(Integer commentPersonPictureRes) {
this.commentPersonPictureRes = commentPersonPictureRes;
}
public String getCommentPersonName() {
return commentPersonName;
}
public void setCommentPersonName(String commentPersonName) {
this.commentPersonName = commentPersonName;
}
public String getCommentText() {
return commentText;
}
public void setCommentText(String commentText) {
this.commentText = commentText;
}
public String getCommentDate() {
return commentDate;
}
public void setCommentDate(String commentDate) {
this.commentDate = commentDate;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment