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

16 lines
350 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayPointBudgetGetResponse.
/// </summary>
public class AlipayPointBudgetGetResponse : AopResponse
{
/// <summary>
/// 还可以发放的集分宝个数
/// </summary>
[JsonProperty("budget_amount")]
public long BudgetAmount { get; set; }
}
}