Added Discord Bot Status and a button to Stop/Start the discord bot

This commit is contained in:
Brett Hewitson 2021-12-17 13:21:33 +10:00
parent a2b811972f
commit 13713b7092
18 changed files with 439 additions and 16 deletions

View file

@ -0,0 +1,10 @@
namespace ServerManagerTool.DiscordBot.Enums
{
public enum BotState
{
Unknown,
Disabled,
Stopped,
Running,
}
}