Files
Servers/MoonlightServers.DaemonShared/Enums/ServerState.cs

11 lines
179 B
C#

namespace MoonlightServers.DaemonShared.Enums;
public enum ServerState
{
Offline = 0,
Starting = 1,
Online = 2,
Stopping = 3,
Installing = 4,
Locked = 5
}