Add XML docs

This commit is contained in:
Stone_Red
2025-12-23 15:15:18 +01:00
parent 55f26b3a92
commit 3e339b2b7a
26 changed files with 377 additions and 4 deletions
@@ -4,8 +4,18 @@ using RemoteExec.Shared;
namespace RemoteExec.Client;
/// <summary>
/// Provides data for the <see cref="RemoteExecutor.MetricsUpdated"/> event.
/// </summary>
public class ServerMetricsUpdatedEventArgs(HubConnection connection, ServerMetrics metrics) : EventArgs
{
/// <summary>
/// Gets the hub connection associated with the metrics update.
/// </summary>
public HubConnection Connection { get; } = connection;
/// <summary>
/// Gets the updated server metrics.
/// </summary>
public ServerMetrics Metrics { get; } = metrics;
}