提交功能

This commit is contained in:
Bob.Song
2026-02-08 16:58:32 +08:00
commit 9dd1e6c278
67 changed files with 4588 additions and 0 deletions

29
AppSettingsConfigs.cs Normal file
View File

@@ -0,0 +1,29 @@
namespace ACBuildService;
public class AppSettingsConfigs
{
/// <summary>
/// 是否开启Debug模式
/// </summary>
public bool Debug { get; set; } = true;
/// <summary>
/// http服务地址
/// </summary>
public int HttpPort { get; set; }
/// <summary>
/// 是否开启代理
/// </summary>
public bool OpenProxy { get; set; }
/// <summary>
/// 代理地址
/// </summary>
public string ProxyHost { get; set; }
/// <summary>
/// 密码
/// </summary>
public string Password { get; set; }
}