using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { public class AddMsgListItemEntity { /// /// /// public string MsgId { get; set; } /// /// /// public string FromUserName { get; set; } /// /// /// public string ToUserName { get; set; } /// /// /// public int MsgType { get; set; } /// /// 来来来 /// public string Content { get; set; } /// /// /// public int Status { get; set; } /// /// /// public int ImgStatus { get; set; } /// /// /// public int CreateTime { get; set; } /// /// /// public int VoiceLength { get; set; } /// /// /// public int PlayLength { get; set; } /// /// /// public string FileName { get; set; } /// /// /// public string FileSize { get; set; } /// /// /// public string MediaId { get; set; } /// /// /// public string Url { get; set; } /// /// /// public int AppMsgType { get; set; } /// /// /// public int StatusNotifyCode { get; set; } /// /// /// public string StatusNotifyUserName { get; set; } /// /// /// public RecommendInfoEntity RecommendInfo { get; set; } /// /// /// public int ForwardFlag { get; set; } /// /// /// public AppInfoEntity AppInfo { get; set; } /// /// /// public int HasProductId { get; set; } /// /// /// public string Ticket { get; set; } /// /// /// public int ImgHeight { get; set; } /// /// /// public int ImgWidth { get; set; } /// /// /// public int SubMsgType { get; set; } /// /// /// public long NewMsgId { get; set; } /// /// /// public string OriContent { get; set; } } }