using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { public class MPSubscribeMsgListItemEntity { /// /// /// public string UserName { get; set; } /// /// /// public int MPArticleCount { get; set; } /// /// /// public List MPArticleList { get; set; } /// /// /// public string Time { get; set; } /// /// 算法与数据结构 /// public string NickName { get; set; } } }