mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-15 14:34:03 +02:00
10 lines
225 B
C#
10 lines
225 B
C#
namespace Phantom.Controller.Rpc;
|
|
|
|
sealed class RpcClientConnectionClosedEventArgs : EventArgs {
|
|
public uint RoutingId { get; }
|
|
|
|
public RpcClientConnectionClosedEventArgs(uint routingId) {
|
|
RoutingId = routingId;
|
|
}
|
|
}
|