Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ZhimaMerchantTestPracticeModel.cs

20 lines
391 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ZhimaMerchantTestPracticeModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantTestPracticeModel : AopObject
{
/// <summary>
/// a d
/// </summary>
[JsonProperty("add")]
public List<string> Add { get; set; }
}
}