Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayMpointprodBenefitDetailGetResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

31 lines
671 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMpointprodBenefitDetailGetResponse.
/// </summary>
public class AlipayMpointprodBenefitDetailGetResponse : AopResponse
{
/// <summary>
/// 权益详情列表
/// </summary>
[JsonProperty("benefit_infos")]
public List<BenefitInfo> BenefitInfos { get; set; }
/// <summary>
/// 响应码
/// </summary>
[JsonProperty("code")]
public string Code { get; set; }
/// <summary>
/// 响应描述
/// </summary>
[JsonProperty("msg")]
public string Msg { get; set; }
}
}