This commit is contained in:
liqionghai
2025-11-18 17:43:12 +08:00
parent 3f9e939d54
commit d758497f93
189 changed files with 16669 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace Gatedge.ScanCode.Options
{
/// <summary>
/// 文件配置类
/// </summary>
public class FileOption
{
/// <summary>
/// 文件目录
/// </summary>
public string DonwloadPath { get; set; }
}
}

View File

@@ -0,0 +1,25 @@
namespace Gatedge.ScanCode.Options;
/// <summary>
/// JWT配置类
/// </summary>
public class JwtOption
{
/// <summary>
///
/// </summary>
public string SecretKey { get; set; }
/// <summary>
///
/// </summary>
public string Issuer { get; set; }
/// <summary>
///
/// </summary>
public string Audience { get; set; }
/// <summary>
/// 失效时间(秒)
/// </summary>
public long FailureTime { get; set; }
}