Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/KoubeiQualityTestCloudacptCheckresultSubmitResponse.cs

22 lines
487 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiQualityTestCloudacptCheckresultSubmitResponse.
/// </summary>
public class KoubeiQualityTestCloudacptCheckresultSubmitResponse : AopResponse
{
/// <summary>
/// 活动id
/// </summary>
[JsonProperty("activity_id")]
public string ActivityId { get; set; }
/// <summary>
/// 批次
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
}
}