using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayAssetAccountGetResponse. /// public class AlipayAssetAccountGetResponse : AopResponse { /// /// 账户绑定关系列表 /// [XmlArray("asset_list")] [XmlArrayItem("asset_account_result")] public List AssetList { get; set; } } }