Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOpenPublicPersonalizedExtensionBatchqueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

25 lines
587 B
C#

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