using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayPassFileAddResponse.
///
public class AlipayPassFileAddResponse : AopResponse
{
///
/// 业务结果
///
[JsonProperty("biz_result")]
public string BizResult { get; set; }
///
/// 业务错误码
///
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
///
/// 是否成功标识:T-成功;F-失败
///
[JsonProperty("success")]
public string Success { get; set; }
}
}