12 lines
315 B
C#
12 lines
315 B
C#
namespace MxGateway.Server.Configuration;
|
|
|
|
public sealed record EffectiveDashboardConfiguration(
|
|
bool Enabled,
|
|
string PathBase,
|
|
bool RequireAdminScope,
|
|
bool AllowAnonymousLocalhost,
|
|
int SnapshotIntervalMilliseconds,
|
|
int RecentFaultLimit,
|
|
int RecentSessionLimit,
|
|
bool ShowTagValues);
|