using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayUserAccountFreezeGetResponse. /// public class AlipayUserAccountFreezeGetResponse : AopResponse { /// /// 冻结金额列表 /// [JsonProperty("freeze_items")] public List FreezeItems { get; set; } /// /// 冻结总条数 /// [JsonProperty("total_results")] public string TotalResults { get; set; } } }