using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// PointsExchangeInfo Data Structure.
///
[Serializable]
public class PointsExchangeInfo : AopObject
{
///
/// 兑换内容的ID
///
[XmlArray("ids")]
[XmlArrayItem("string")]
public List Ids { get; set; }
///
/// 积分兑换内容的类型,比如券
///
[XmlElement("type")]
public string Type { get; set; }
}
}