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

16 lines
355 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayAssetPointBalanceQueryResponse.
/// </summary>
public class AlipayAssetPointBalanceQueryResponse : AopResponse
{
/// <summary>
/// 用户的集分宝余额
/// </summary>
[JsonProperty("point_amount")]
public long PointAmount { get; set; }
}
}