package com.yidianling.im.bean;

/**
 * 消息主页
 * Created by hgw on 2018/3/13.
 */

public class MsgHome {

    public String num;//未读消息数
    public int is_read;//是否已读:1未读;2已读
    public String head;
    public String title;
    public String content;
    public String time;
    public String type;//私聊群聊type=3
    public String toUid;
    public String toName;
    public int is_top;//是否置顶
    public String chat_type;//1私聊 2群聊
    public String doctor_id;//专家id
    public int utype = 0;

    public MsgHome(String head, String title, String content, String type, int is_read, String chat_type) {
        this.is_read = is_read;
        this.head = head;
        this.title = title;
        this.content = content;
        this.type = type;
        this.chat_type = chat_type;
    }
}