using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// OpenAccountCreateResponse. /// public class OpenAccountCreateResponse : TopResponse { /// /// 插入数据的Open Account Id的列表 /// [XmlArray("datas")] [XmlArrayItem("openaccount_long")] public List Datas { get; set; } } }