9 lines
146 B
C#

namespace GameServiceWarden.ModuleFramework
{
public enum ServiceState
{
Stopped,
Running,
RestartPending
}
}