Files
client/MareSynchronos/WebAPI/SignalR/Utils/ServerState.cs
Stanley Dimant c66b58d156 add disable autologon on a per character basis
add automatic notes population on empty notes
adjust mare command help text
2024-10-30 10:13:22 +01:00

19 lines
332 B
C#

namespace MareSynchronos.WebAPI.SignalR.Utils;
public enum ServerState
{
Offline,
Connecting,
Reconnecting,
Disconnecting,
Disconnected,
Connected,
Unauthorized,
VersionMisMatch,
RateLimited,
NoSecretKey,
MultiChara,
OAuthMisconfigured,
OAuthLoginTokenStale,
NoAutoLogon
}