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