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