using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicMessagebatchPushResponse. /// public class AlipayMobilePublicMessagebatchPushResponse : AopResponse { /// /// 成功 /// [XmlElement("code")] public string Code { get; set; } /// /// 消息ID /// [XmlElement("data")] public string Data { get; set; } /// /// 成功 /// [XmlElement("msg")] public string Msg { get; set; } } }