using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayPassTplAddResponse.
///
public class AlipayPassTplAddResponse : AopResponse
{
///
/// 接口返回业务错误码
///
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
///
/// 接口调用返回结果信息
///
[JsonProperty("result")]
public string Result { get; set; }
///
/// 操作成功标识【T:成功;F:失败】
///
[JsonProperty("success")]
public string Success { get; set; }
}
}