namespace ZB.MOM.WW.LmxOpcUa.Host.Configuration { /// /// Status dashboard configuration. (SVC-003, DASH-001) /// public class DashboardConfiguration { public bool Enabled { get; set; } = true; public int Port { get; set; } = 8081; public int RefreshIntervalSeconds { get; set; } = 10; } }