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.

19 lines
454 B
C#

using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMicropayOrderDirectPayResponse.
/// </summary>
public class AlipayMicropayOrderDirectPayResponse : AopResponse
{
/// <summary>
/// 单笔直接支付返回结果
/// </summary>
[XmlElement("single_pay_detail")]
public SinglePayDetail SinglePayDetail { get; set; }
}
}