24 lines
505 B
C#
24 lines
505 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenAppCodetesttestModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenAppCodetesttestModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 测试参数1
|
|
/// </summary>
|
|
[JsonProperty("testparam")]
|
|
public string Testparam { get; set; }
|
|
|
|
/// <summary>
|
|
/// 测试测试
|
|
/// </summary>
|
|
[JsonProperty("testtestparam")]
|
|
public string Testtestparam { get; set; }
|
|
}
|
|
} |