17 lines
446 B
C#
17 lines
446 B
C#
using System.Xml.Serialization;
|
||
|
||
namespace Alipay.AopSdk.Core.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoEduKtParentQueryResponse.
|
||
/// </summary>
|
||
public class AlipayEcoEduKtParentQueryResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 如果用户已经添加过这个孩子,则返回SUCCESS , 失败返回FAIL。
|
||
/// </summary>
|
||
[XmlElement("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
}
|