忽略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,54 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SecurityScene Data Structure.
/// </summary>
[Serializable]
public class SecurityScene : AopObject
{
/// <summary>
/// 接入渠道
/// </summary>
[JsonProperty("access_channel")]
public string AccessChannel { get; set; }
/// <summary>
/// 事件信息
/// </summary>
[JsonProperty("ctu_params")]
public string CtuParams { get; set; }
/// <summary>
/// 产品名称
/// </summary>
[JsonProperty("product_name")]
public string ProductName { get; set; }
/// <summary>
/// 产品节点
/// </summary>
[JsonProperty("product_node")]
public string ProductNode { get; set; }
/// <summary>
/// 扩展参数
/// </summary>
[JsonProperty("security_scene_params")]
public string SecuritySceneParams { get; set; }
/// <summary>
/// 系统名称
/// </summary>
[JsonProperty("system_name")]
public string SystemName { get; set; }
/// <summary>
/// 总金额
/// </summary>
[JsonProperty("total_fee")]
public string TotalFee { get; set; }
}
}