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