using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PromoItemInfo Data Structure.
///
[Serializable]
public class PromoItemInfo : AopObject
{
///
/// 商品购买限制
///
[XmlElement("constraint_info")]
public ConstraintInfo ConstraintInfo { get; set; }
///
/// 商品ID,用于领取时使用
///
[XmlElement("id")]
public string Id { get; set; }
///
/// 商品售卖结束时间
///
[XmlElement("sale_end_time")]
public string SaleEndTime { get; set; }
///
/// 商品售卖的开始时间
///
[XmlElement("sale_start_time")]
public string SaleStartTime { get; set; }
///
/// 剩余库存
///
[XmlElement("total_inventory")]
public string TotalInventory { get; set; }
///
/// 券信息
///
[XmlElement("voucher")]
public Voucher Voucher { get; set; }
}
}