using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MEquityDisplayInfo Data Structure. /// [Serializable] public class MEquityDisplayInfo : AopObject { /// /// 品牌名 /// [XmlElement("brand_name")] public string BrandName { get; set; } /// /// 权益LOGO /// [XmlElement("logo")] public string Logo { get; set; } /// /// 权益名称 /// [XmlElement("name")] public string Name { get; set; } } }