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

13 lines
293 B
C#

namespace AppletMvcService.Models
{
public class SendMsg
{
public string touser { get; set; }
public string msgtype { get; set; }
public MsgContent text { get; set; }
}
public class MsgContent
{
public string content { get; set; }
}
}