using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XHZB.Model
{
public class SocketModel
{
///
/// 互动类型
///
public int c { get; set; }
///
/// 直播间编号
///
public int rid { get; set; }
///
/// 发送者ID
///
public int f { get; set; }
///
/// 接收者id
///
public List t { set; get; }//对象
///
/// 设备类型
///
public string d { get; set; }
///
/// 用户类型 1老师 2学生
///
public int u { get; set; }
///
/// 错误信息
///
public string m { get; set; }
///
/// 是否群发 0不发 1发
///
public int s { get; set; }
///
/// 消息内容
///
public BodyModel b { get; set; }
}
}