Files
RemoteExec/src/RemoteExec.Dashboard/Configuration/DashboardConfiguration.cs
T
2026-01-05 17:24:46 +01:00

18 lines
492 B
C#

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