Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOfflineProviderEquipmentAuthRemoveResponse.cs

22 lines
510 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOfflineProviderEquipmentAuthRemoveResponse.
/// </summary>
public class AlipayOfflineProviderEquipmentAuthRemoveResponse : AopResponse
{
/// <summary>
/// 被解绑的机具编号
/// </summary>
[JsonProperty("device_id")]
public string DeviceId { get; set; }
/// <summary>
/// 机具厂商PID
/// </summary>
[JsonProperty("merchant_pid")]
public string MerchantPid { get; set; }
}
}