Files
RemoteExec/RemoteExec.Client/ServerMetricsUpdatedEventArgs.cs
T
2025-12-20 18:46:21 +01:00

12 lines
323 B
C#

using Microsoft.AspNetCore.SignalR.Client;
using RemoteExec.Shared;
namespace RemoteExec.Client;
public class ServerMetricsUpdatedEventArgs(HubConnection connection, ServerMetrics metrics) : EventArgs
{
public HubConnection Connection { get; } = connection;
public ServerMetrics Metrics { get; } = metrics;
}