忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,30 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserAgreementSignConfirmModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAgreementSignConfirmModel : AopObject
{
/// <summary>
/// 代扣签约申请时支付宝返回的签约申请token商户可利用该值完成签约的确认。
/// </summary>
[JsonProperty("apply_token")]
public string ApplyToken { get; set; }
/// <summary>
/// 支付宝用户的身份证后4位。 签约确认接口目前只有国际极简会校验身份证后4位。
/// </summary>
[JsonProperty("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 能唯一确认用户身份的标识号,如:手机验证码等。
/// </summary>
[JsonProperty("confirm_no")]
public string ConfirmNo { get; set; }
}
}