Files
Servers/MoonlightServers.Shared/Enums/ServerPowerState.cs

10 lines
162 B
C#

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