Files

24 lines
489 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOfflinePayMasterKey Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflinePayMasterKey : AopObject
{
/// <summary>
/// 秘钥id
/// </summary>
[JsonProperty("key_id")]
public long KeyId { get; set; }
/// <summary>
/// 支付宝脱机服务公钥
/// </summary>
[JsonProperty("public_key")]
public string PublicKey { get; set; }
}
}