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