8 lines
188 B
C#
8 lines
188 B
C#
namespace HanaToolbox.Config;
|
|
|
|
public sealed class NtfyConfig
|
|
{
|
|
public string Url { get; set; } = "https://ntfy.sh/your-topic";
|
|
public string Token { get; set; } = string.Empty;
|
|
}
|