using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// OpenAccountListResponse. /// public class OpenAccountListResponse : TopResponse { /// /// 返回信息 /// [XmlArray("datas")] [XmlArrayItem("openaccount_object")] public List Datas { get; set; } } }