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.

24 lines
565 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayPointOrderAddResponse.
/// </summary>
public class AlipayPointOrderAddResponse : AopResponse
{
/// <summary>
/// 支付宝集分宝发放流水号
/// </summary>
[XmlElement("alipay_order_no")]
public string AlipayOrderNo { get; set; }
/// <summary>
/// 此参数已废弃。
/// </summary>
[XmlElement("result_code")]
public bool ResultCode { get; set; }
}
}