mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 11:49:03 +00:00
13 lines
211 B
C#
13 lines
211 B
C#
namespace ServerManagerTool.Enums
|
|
{
|
|
public enum ServerStatus
|
|
{
|
|
Unknown,
|
|
Stopping,
|
|
Stopped,
|
|
Initializing,
|
|
Running,
|
|
Updating,
|
|
Uninstalled
|
|
}
|
|
}
|