1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-05-14 20:34:03 +02:00
Minecraft-Phantom-Panel/Controller/Phantom.Controller.Rpc/RpcClientConnectionClosedEventArgs.cs

10 lines
224 B
C#

namespace Phantom.Controller.Rpc;
sealed class RpcClientConnectionClosedEventArgs : EventArgs {
public uint RoutingId { get; }
public RpcClientConnectionClosedEventArgs(uint routingId) {
RoutingId = routingId;
}
}