using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// DiscountDetailInfo Data Structure. /// [Serializable] public class DiscountDetailInfo : AopObject { /// /// 优惠金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 优惠明细ID /// [XmlElement("id")] public string Id { get; set; } /// /// 优惠名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 优惠券类型 /// [XmlElement("type")] public string Type { get; set; } } }