Files
Servers/MoonlightServers.Daemon/Models/ServerState.cs

10 lines
158 B
C#

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