using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayStockPortfolioAllGetResponse. /// public class AlipayStockPortfolioAllGetResponse : AopResponse { /// /// 返回码 /// [XmlElement("code")] public string Code { get; set; } /// /// 返回码的描述 /// [XmlElement("msg")] public string Msg { get; set; } /// /// 股票代码列表 /// [XmlArray("symbol_list")] [XmlArrayItem("string")] public List SymbolList { get; set; } } }