using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayPassCodeAddResponse. /// public class AlipayPassCodeAddResponse : AopResponse { /// /// 成功时返回业务参数 /// [JsonProperty("biz_result")] public List BizResult { get; set; } /// /// 返回码. /// [JsonProperty("error_code")] public string ErrorCode { get; set; } /// /// 是否发码成功的标识。 /// [JsonProperty("success")] public bool Success { get; set; } } }