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

19 lines
574 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayCommerceTransportOfflinepayKeyQueryResponse.
/// </summary>
public class AlipayCommerceTransportOfflinepayKeyQueryResponse : AopResponse
{
/// <summary>
/// 支付宝脱机交易公钥列表。列表中每一项为一个有效的支付宝公钥信息, 其中id字段表示支付宝公钥id。
/// </summary>
[JsonProperty("keys")]
public List<AlipayOfflinePayMasterKey> Keys { get; set; }
}
}