server-monitor-manager/src/ServerMonitorManager.Control/PasswordLoginOptions.cs

14 lines
349 B
C#

namespace ServerMonitorManager.Control;
public sealed class PasswordLoginOptions
{
public const string SectionName = "Authentication:PasswordLogin";
public bool EnabledForTesting { get; set; }
public string? Username { get; set; }
public string? PasswordHash { get; set; }
public int SessionTtlMinutes { get; set; } = 60;
}