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.

30 lines
724 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingToolPointsQueryResponse.
/// </summary>
public class KoubeiMarketingToolPointsQueryResponse : AopResponse
{
/// <summary>
/// 可用集点
/// </summary>
[XmlElement("available_points")]
public string AvailablePoints { get; set; }
/// <summary>
/// 冻结集点
/// </summary>
[XmlElement("freezed_points")]
public string FreezedPoints { get; set; }
/// <summary>
/// 累计集点
/// </summary>
[XmlElement("total_points")]
public string TotalPoints { get; set; }
}
}