Files
SethDiscordBot/PluginManager/Interfaces/DBCommand.cs
Wizzy69 bb5260ce68
2022-01-12 15:37:45 +02:00

20 lines
517 B
C#

namespace PluginManager.Interfaces
{
public interface DBCommand
{
string Command { get; }
string Description { get; }
string Usage { get; }
bool canUseDM { get; }
bool canUseServer { get; }
bool requireAdmin { get; }
void Execute(Discord.Commands.SocketCommandContext context,
Discord.WebSocket.SocketMessage message,
Discord.WebSocket.DiscordSocketClient client,
bool isDM);
}
}