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