TG.WXCRM.V4/AppletMvcService/Models/UnReadMsgModel.cs

19 lines
467 B
C#

namespace AppletMvcService.Models
{
public class UnReadMsgModel
{
public long id { get; set; }
public string openId { get; set; }
public long createtime { get; set; }
public string msgtype { get; set; }
public string content { get; set; }
public int eid { get; set; }
public int issend { get; set; }
public string filepath { get; set; }
public string mediaid { get; set; }
}
}