You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
793 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMpointprodBenefitDetailGetResponse.
/// </summary>
public class AlipayMpointprodBenefitDetailGetResponse : AopResponse
{
/// <summary>
/// 权益详情列表
/// </summary>
[XmlArray("benefit_infos")]
[XmlArrayItem("benefit_info")]
public List<BenefitInfo> BenefitInfos { get; set; }
/// <summary>
/// 响应码
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 响应描述
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
}
}