Files
SethDiscordBot/PluginManager/Interfaces/DBCommand.cs
2022-01-07 20:26:10 +02:00

19 lines
482 B
C#

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