namespace RemoteExec.Dashboard.Configuration;
///
/// Configuration for the dashboard.
///
public class DashboardConfiguration
{
///
/// Gets or sets the list of servers to monitor.
///
public List Servers { get; set; } = [];
///
/// Gets or sets the maximum number of metrics history entries to keep per server.
///
public int MaxMetricsHistoryCount { get; set; } = 100;
}