16 lines
299 B
C#
16 lines
299 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayUserTestResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class AlipayUserTestResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 返回值
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("ret1")]
|
||
|
|
public string Ret1 { get; set; }
|
||
|
|
}
|
||
|
|
}
|