15 lines
482 B
C#
15 lines
482 B
C#
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();
|
|
}
|