Files
Servers/MoonlightServers.Shared/Enums/ServerState.cs
2025-02-12 23:02:00 +01:00

10 lines
157 B
C#

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