24 lines
585 B
C#
24 lines
585 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOfflineProviderEquipmentAuthRemoveResponse.
|
|
/// </summary>
|
|
public class AlipayOfflineProviderEquipmentAuthRemoveResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 被解绑的机具编号
|
|
/// </summary>
|
|
[XmlElement("device_id")]
|
|
public string DeviceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机具厂商PID
|
|
/// </summary>
|
|
[XmlElement("merchant_pid")]
|
|
public string MerchantPid { get; set; }
|
|
}
|
|
}
|