6 lines
216 B
C#
6 lines
216 B
C#
public sealed class GatewayMonitoringOptions
|
|
{
|
|
public const string Section = "GatewayMonitoring";
|
|
public int StaleThresholdMinutes { get; init; } = 10;
|
|
public int PollIntervalMinutes { get; init; } = 5;
|
|
} |