You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
420 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayAssetPointOrderCreateResponse.
/// </summary>
public class AlipayAssetPointOrderCreateResponse : AopResponse
{
/// <summary>
/// 支付宝集分宝发放流水号
/// </summary>
[XmlElement("alipay_order_no")]
public string AlipayOrderNo { get; set; }
}
}