using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// PlateInfoForYiCai Data Structure.
///
[Serializable]
public class PlateInfoForYiCai : AopObject
{
///
/// 板块所属类型
///
[XmlElement("category")]
public string Category { get; set; }
///
/// 板块的ID
///
[XmlElement("id")]
public string Id { get; set; }
///
/// 板块名称
///
[XmlElement("plate_name")]
public string PlateName { get; set; }
///
/// 股票代码和股票名称
///
[XmlArray("symbol_name")]
[XmlArrayItem("string")]
public List SymbolName { get; set; }
}
}