mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 23:42:03 +02:00
12 lines
323 B
C#
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;
|
|
}
|