mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 21:57:22 +01:00
11 lines
166 B
C#
11 lines
166 B
C#
namespace MareSynchronos.WebAPI;
|
|
|
|
public enum ServerState
|
|
{
|
|
Offline,
|
|
Disconnected,
|
|
Connected,
|
|
Unauthorized,
|
|
VersionMisMatch,
|
|
RateLimited
|
|
}
|