using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayOpenAppMessageSubscriptionQueryResponse. /// public class AlipayOpenAppMessageSubscriptionQueryResponse : AopResponse { /// /// 消息接入方式,例如HTTP /// [XmlElement("comm_type")] public string CommType { get; set; } /// /// 消息标签 /// [XmlElement("tag")] public string Tag { get; set; } /// /// 消息主题名称 /// [XmlElement("topic")] public string Topic { get; set; } } }