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
443 B
C#

using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMicropayOrderGetResponse.
/// </summary>
public class AlipayMicropayOrderGetResponse : AopResponse
{
/// <summary>
/// 冻结订单详情
/// </summary>
[XmlElement("micro_pay_order_detail")]
public MicroPayOrderDetail MicroPayOrderDetail { get; set; }
}
}