using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// MallDiscountDetail Data Structure. /// [Serializable] public class MallDiscountDetail : AopObject { /// /// 优惠金额 /// [XmlElement("discount_amount")] public string DiscountAmount { get; set; } /// /// 优惠描述,比如至多优惠XX元,满XX减XX /// [XmlArray("discount_desc")] [XmlArrayItem("string")] public List DiscountDesc { get; set; } /// /// 优惠类型,外部优惠(OUT_DISCOUNT),商家优惠(M_DISCOUNT),平台优惠(RT_DISCOUNT) /// [XmlElement("discount_type")] public string DiscountType { get; set; } /// /// 优惠ID或活动ID /// [XmlElement("id")] public string Id { get; set; } /// /// 优惠名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 是否是购买券, true代表是购买的券,false调表不是购买的券 /// [XmlElement("purchased")] public bool Purchased { get; set; } } }