using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOfflinePayMasterKey Data Structure. /// [Serializable] public class AlipayOfflinePayMasterKey : AopObject { /// /// 秘钥id /// [JsonProperty("key_id")] public long KeyId { get; set; } /// /// 支付宝脱机服务公钥 /// [JsonProperty("public_key")] public string PublicKey { get; set; } } }