using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// WdkRexWotEventPostResponse. /// public class WdkRexWotEventPostResponse : TopResponse { /// /// 数据结果 /// [XmlElement("data")] public bool Data { get; set; } /// /// 错误码 /// [XmlElement("msg_code")] public string MsgCode { get; set; } /// /// 错误信息 /// [XmlElement("msg_info")] public string MsgInfo { get; set; } /// /// 请求结果 /// [XmlElement("succeed")] public bool Succeed { get; set; } } }