using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BenifitGoodsInfo Data Structure. /// [Serializable] public class BenifitGoodsInfo : AopObject { /// /// 扩展信息,预留字段,非必录项 /// [XmlElement("extend")] public string Extend { get; set; } /// /// ISV对应的商品id /// [XmlElement("goods_id")] public string GoodsId { get; set; } /// /// ISV对应的商品标题 /// [XmlElement("goods_title")] public string GoodsTitle { get; set; } /// /// ISV对应的商品类型 /// [XmlElement("goods_type")] public string GoodsType { get; set; } } }