EventPraiseItem.java 815 Bytes
package com.cnlive.goldenline.model;

import android.widget.LinearLayout;

import com.cnlive.goldenline.ui.model.CommentBean;

/**
 * Created by xiansong on 2017/4/10.
 */

public class EventPraiseItem {

    private CommentBean commentBean;
    private int commentAt;
    private LinearLayout praiseBtn;

    public int getCommentAt() {
        return commentAt;
    }

    public void setCommentAt(int commentAt) {
        this.commentAt = commentAt;
    }

    public CommentBean getCommentBean() {
        return commentBean;
    }

    public void setCommentBean(CommentBean commentBean) {
        this.commentBean = commentBean;
    }

    public LinearLayout getPraiseBtn() {
        return praiseBtn;
    }

    public void setPraiseBtn(LinearLayout praiseBtn) {
        this.praiseBtn = praiseBtn;
    }
}