忽略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,46 +0,0 @@
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMobileBksigntokenVerifyResponse.
/// </summary>
public class AlipayMobileBksigntokenVerifyResponse : AopResponse
{
/// <summary>
/// 返回值创建时间
/// </summary>
[JsonProperty("createtimestamp")]
public string Createtimestamp { get; set; }
/// <summary>
/// 返回值logonId
/// </summary>
[JsonProperty("loginid")]
public string Loginid { get; set; }
/// <summary>
/// 结果说明
/// </summary>
[JsonProperty("memo")]
public string Memo { get; set; }
/// <summary>
/// 结果状态码
/// </summary>
[JsonProperty("resultcode")]
public long Resultcode { get; set; }
/// <summary>
/// 是否成功
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
/// <summary>
/// 返回值userId
/// </summary>
[JsonProperty("userid")]
public string Userid { get; set; }
}
}