13 lines
147 B
C#
13 lines
147 B
C#
namespace NATS.Server.Protocol;
|
|
|
|
public enum ClientKind
|
|
{
|
|
Client,
|
|
Router,
|
|
Gateway,
|
|
Leaf,
|
|
System,
|
|
JetStream,
|
|
Account,
|
|
}
|