21 lines
609 B
C#
21 lines
609 B
C#
using System;
|
|
|
|
namespace NetCore.Model.wx
|
|
{
|
|
public class wx_message
|
|
{
|
|
public int pkid { get; set; }
|
|
public string msgid { get; set; }
|
|
public string msgsvrid { get; set; }
|
|
public int issend { get; set; }
|
|
public long createtime { get; set; }
|
|
public string talker { get; set; }
|
|
public string imgpath { get; set; }
|
|
public string username { get; set; }
|
|
public string nickname { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int msgtype { get; set; }
|
|
public string msgcontent { get; set; }
|
|
}
|
|
}
|