first commit

This commit is contained in:
2026-03-02 20:53:28 +01:00
commit d27c205106
63 changed files with 4593 additions and 0 deletions

14
Config/AppConfig.cs Normal file
View File

@@ -0,0 +1,14 @@
using System.Text.Json.Serialization;
namespace HanaToolbox.Config;
public sealed class AppConfig
{
public HanaConfig Hana { get; set; } = new();
public BackupConfig Backup { get; set; } = new();
public CleanerConfig Cleaner { get; set; } = new();
public MonitorConfig Monitor { get; set; } = new();
public FirewallConfig Firewall { get; set; } = new();
public AuroraConfig Aurora { get; set; } = new();
public NtfyConfig Ntfy { get; set; } = new();
}