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; } } }