Minecraft-Phantom-Panel/Utils/Phantom.Utils.Rpc/Runtime/RpcClientConnectionClosedEv...

10 lines
231 B
C#

namespace Phantom.Utils.Rpc.Runtime;
sealed class RpcClientConnectionClosedEventArgs : EventArgs {
internal uint RoutingId { get; }
internal RpcClientConnectionClosedEventArgs(uint routingId) {
RoutingId = routingId;
}
}