using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOpenPublicPersonalizedExtensionBatchqueryResponse. /// public class AlipayOpenPublicPersonalizedExtensionBatchqueryResponse : AopResponse { /// /// 扩展区套数 /// [JsonProperty("count")] public long Count { get; set; } /// /// 扩展区信息 /// [JsonProperty("extensions")] public List Extensions { get; set; } } }