mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 12:11:05 +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
|
|
}
|
|
}
|