patch on discord bot UI

This commit is contained in:
2023-04-08 15:54:39 +03:00
parent 54a68d635d
commit 244209093e
12 changed files with 249 additions and 19 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using PluginManager.Interfaces;
namespace DiscordBotUI.Models.Bot
{
public class PluginsPageModel
{
public List<string> InstalledCommands {get;set;}
public List<string> InstalledEvents {get;set;}
public List<string> InstalledSlashCommands {get;set;}
public List<string[]> Plugins {get;set;}
public PluginManager.Online.PluginsManager PluginsManager {get;set;}
}
}