Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceLotteryPresentSendResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

16 lines
355 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayCommerceLotteryPresentSendResponse.
/// </summary>
public class AlipayCommerceLotteryPresentSendResponse : AopResponse
{
/// <summary>
/// 是否赠送成功
/// </summary>
[JsonProperty("send_result")]
public bool SendResult { get; set; }
}
}