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

7
Config/NtfyConfig.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace HanaToolbox.Config;
public sealed class NtfyConfig
{
public string Url { get; set; } = "https://ntfy.sh/your-topic";
public string Token { get; set; } = string.Empty;
}