namespace NATS.Server; /// /// Identifies the type of a client connection. /// Maps to Go's client kind constants in client.go:45-65. /// public enum ClientKind { Client, Router, Gateway, Leaf, System, JetStream, Account, } public static class ClientKindExtensions { public static bool IsInternal(this ClientKind kind) => kind is ClientKind.System or ClientKind.JetStream or ClientKind.Account; }