Add adjustable reconnects and settings revisions

This commit is contained in:
Alexander Horner
2023-10-09 21:11:07 +01:00
parent 68b0bf3eb9
commit 0155cfb8fc
6 changed files with 266 additions and 103 deletions

View File

@@ -11,6 +11,18 @@ namespace ntfysh_client
set => timeout.Value = value;
}
public decimal ReconnectAttempts
{
get => reconnectAttempts.Value;
set => reconnectAttempts.Value = value;
}
public decimal ReconnectAttemptDelay
{
get => reconnectAttemptDelay.Value;
set => reconnectAttemptDelay.Value = value;
}
public SettingsDialog()
{
InitializeComponent();