using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// MarketResult Data Structure. /// [Serializable] public class MarketResult : AopObject { /// /// 营销信息列表 /// [XmlArray("price_detail_list")] [XmlArrayItem("price_detail_d_t_o")] public List PriceDetailList { get; set; } /// /// 用于区分营销场景,例如打车星巴克 /// [XmlElement("scene")] public string Scene { get; set; } } }