using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace XHZB.Model
{
    public class ZWsMsgVo
    {
        public int type { set; get; }
        public long rid { set; get; }//互动课堂id
        public int from { set; get; }//用户ssouserid

        public List<int> to { set; get; }//对象

        public int usertype
        { set; get; }//用户ssouserid

        public ZWsBodyVo body { set; get; }//内容

        public string device { set; get; }// pad平板 web网页
        public string msg { set; get; }// 错误信息

        public ZWsMsgVo()
        {
            body = new ZWsBodyVo();
        }
    }
}