using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicMessageTotalSendResponse. /// public class AlipayMobilePublicMessageTotalSendResponse : AopResponse { /// /// 结果码 /// [XmlElement("code")] public string Code { get; set; } /// /// 消息ID /// [XmlElement("data")] public string Data { get; set; } /// /// 结果描述 /// [XmlElement("msg")] public string Msg { get; set; } } }