namespace ZB.MOM.WW.OtOpcUa.Host.Configuration
{
///
/// Status dashboard configuration. (SVC-003, DASH-001)
///
public class DashboardConfiguration
{
///
/// Gets or sets a value indicating whether the operator dashboard is hosted alongside the OPC UA service.
///
public bool Enabled { get; set; } = true;
///
/// Gets or sets the HTTP port used by the dashboard endpoint that exposes service health and rebuild state.
///
public int Port { get; set; } = 8081;
///
/// Gets or sets the refresh interval, in seconds, for recalculating the dashboard status snapshot.
///
public int RefreshIntervalSeconds { get; set; } = 10;
}
}