|
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserTestResponse.
|
|
/// </summary>
|
|
public class AlipayUserTestResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 返回值
|
|
/// </summary>
|
|
[XmlElement("ret1")]
|
|
public string Ret1 { get; set; }
|
|
}
|
|
}
|