16 lines
266 B
C#
16 lines
266 B
C#
![]() |
namespace MareSynchronos.WebAPI.SignalR.Utils;
|
|||
|
|
|||
|
public enum ServerState
|
|||
|
{
|
|||
|
Offline,
|
|||
|
Connecting,
|
|||
|
Reconnecting,
|
|||
|
Disconnecting,
|
|||
|
Disconnected,
|
|||
|
Connected,
|
|||
|
Unauthorized,
|
|||
|
VersionMisMatch,
|
|||
|
RateLimited,
|
|||
|
NoSecretKey,
|
|||
|
MultiChara,
|
|||
|
}
|