Discord Bot web UI first preview
This commit is contained in:
15
DiscordBotPlugins/DiscordBotUI/Models/Bot/BotModel.cs
Normal file
15
DiscordBotPlugins/DiscordBotUI/Models/Bot/BotModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using PluginManager.Interfaces;
|
||||
|
||||
namespace DiscordBotUI.Models.Bot
|
||||
{
|
||||
public class BotModel
|
||||
{
|
||||
public string BotName { get; set; }
|
||||
public string StartStatus { get; set; }
|
||||
public int PluginsLoaded { get; set; }
|
||||
|
||||
public List<DBCommand> Commands { get; set; }
|
||||
public List<DBEvent> Events { get; set; }
|
||||
public List<DBSlashCommand> SlashCommands { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user