Implemented server list and power state display

This commit is contained in:
2024-12-28 17:24:38 +01:00
parent 92e9f42fbc
commit 87e4172149
11 changed files with 514 additions and 2 deletions

View File

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