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