18 lines
393 B
C#
18 lines
393 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoEduKtBillingModifyResponse.
|
||
/// </summary>
|
||
public class AlipayEcoEduKtBillingModifyResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 如果成功,返回Y
|
||
/// </summary>
|
||
[XmlElement("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
}
|