TG.WXCRM.V4/NetCore.Model/qw/ww_message.cs

21 lines
601 B
C#

using System;
namespace NetCore.Model.qw
{
public class ww_message
{
public int seq { get; set; }
public string msgid { get; set; }
public string msgtype { get; set; }
public string action { get; set; }
public string fromer { get; set; }
public string tolist { get; set; }
public string roomid { get; set; }
public string ext { get; set; }
public string content { get; set; }
public string nfile { get; set; }
public DateTime? msgtime { get; set; }
public DateTime ctime { get; set; }
}
}