16 lines
355 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|