This commit is contained in:
22
SlashCommands/Items/DBSlashCommand.cs
Normal file
22
SlashCommands/Items/DBSlashCommand.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Discord.WebSocket;
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace SlashCommands.Items
|
||||
{
|
||||
public interface DBSlashCommand
|
||||
{
|
||||
string Command { get; }
|
||||
string Description { get; }
|
||||
string Usage { get; }
|
||||
bool requireAdmin { get; }
|
||||
bool PrivateResponse { get; }
|
||||
Task ExecuteServer(SocketSlashCommand command);
|
||||
Task InitializeCommand(DiscordSocketClient client);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user