using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicPersonalizedExtensionBatchqueryResponse. /// public class AlipayOpenPublicPersonalizedExtensionBatchqueryResponse : AopResponse { /// /// 个性化扩展区套数 /// [XmlElement("count")] public long Count { get; set; } /// /// 个性化扩展区信息 /// [XmlArray("extensions")] [XmlArrayItem("query_extension")] public List Extensions { get; set; } } }