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

16 lines
366 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayZdatafrontDatatransferedSendResponse.
/// </summary>
public class AlipayZdatafrontDatatransferedSendResponse : AopResponse
{
/// <summary>
/// 表示数据传输是否成功
/// </summary>
[JsonProperty("success")]
public string Success { get; set; }
}
}