namespace ServerManagerTool.Enums
{
public enum ServerProcessStatus
{
///
/// The server binary could not be found
///
NotInstalled,
///
/// The server binary was found, but the process was not.
///
Stopped,
///
/// The server binary was found, the process was found, but no permissions to access the process.
///
Unknown,
///
/// The server process was found
///
Running,
}
}