using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// MybankFinanceYulibaoPriceQueryResponse. /// public class MybankFinanceYulibaoPriceQueryResponse : AopResponse { /// /// 余利宝行情信息列表 /// [XmlArray("ylb_price_detail_infos")] [XmlArrayItem("y_l_b_price_detail_info")] public List YlbPriceDetailInfos { get; set; } } }