18 lines
389 B
C#
18 lines
389 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingVoucherAuthSendResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingVoucherAuthSendResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 券ID
|
|
/// </summary>
|
|
[XmlElement("voucher_id")]
|
|
public string VoucherId { get; set; }
|
|
}
|
|
}
|