21 lines
531 B
C#
21 lines
531 B
C#
namespace MxGateway.Server.Configuration;
|
|
|
|
public sealed class DashboardOptions
|
|
{
|
|
public bool Enabled { get; init; } = true;
|
|
|
|
public string PathBase { get; init; } = "/dashboard";
|
|
|
|
public bool RequireAdminScope { get; init; } = true;
|
|
|
|
public bool AllowAnonymousLocalhost { get; init; }
|
|
|
|
public int SnapshotIntervalMilliseconds { get; init; } = 1_000;
|
|
|
|
public int RecentFaultLimit { get; init; } = 100;
|
|
|
|
public int RecentSessionLimit { get; init; } = 200;
|
|
|
|
public bool ShowTagValues { get; init; }
|
|
}
|