Files
ntfysh-windows/ntfysh_client/SettingsModel.cs
2023-10-09 21:11:07 +01:00

10 lines
275 B
C#

namespace ntfysh_client
{
public class SettingsModel
{
public uint Revision { get; set; }
public decimal Timeout { get; set; }
public decimal ReconnectAttempts { get; set; }
public decimal ReconnectAttemptDelay { get; set; }
}
}