using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.App.ChatRecord { /// /// 添加聊天记录 /// public class ChatRecordInRequest { /// /// 发送人ID /// public int SendUserId { get; set; } /// /// 接收人ID或者群MiID /// public string ReceiveUserId { get; set; } /// /// 聊天内容 /// public string Content { get; set; } /// /// 聊天类型 1 单聊 2 群聊 /// public int ChatType { get; set; } /// /// 消息类型(1 文本 2 图片 3 文件 4 视频 5语音 6 位置) /// public int MsgType { get; set; } } }