忽略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,52 +0,0 @@
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMobilePublicInfoQueryResponse.
/// </summary>
public class AlipayMobilePublicInfoQueryResponse : AopResponse
{
/// <summary>
/// 服务窗名称
/// </summary>
[JsonProperty("app_name")]
public string AppName { get; set; }
/// <summary>
/// 服务窗审核状态描述,如果审核驳回则有相关的驳回理由
/// </summary>
[JsonProperty("audit_desc")]
public string AuditDesc { get; set; }
/// <summary>
/// 服务窗审核状态对于系统商而言只有三个状态AUDITING审核中AUDIT_FAILED审核驳回AUDIT_SUCCESS审核通过
/// </summary>
[JsonProperty("audit_status")]
public string AuditStatus { get; set; }
/// <summary>
/// 服务窗是否上线T表示上线F表示未上线
/// </summary>
[JsonProperty("is_online")]
public string IsOnline { get; set; }
/// <summary>
/// 服务窗是否上架T表示上架上架即可在支付宝客户端被搜索到F表示未上架
/// </summary>
[JsonProperty("is_release")]
public string IsRelease { get; set; }
/// <summary>
/// 服务窗头像地址
/// </summary>
[JsonProperty("logo_url")]
public string LogoUrl { get; set; }
/// <summary>
/// 服务窗欢迎语
/// </summary>
[JsonProperty("public_greeting")]
public string PublicGreeting { get; set; }
}
}