Files
SethDiscordBot/SlashCommands/Items/DBSlashCommand.cs
2022-09-16 17:37:01 +03:00

23 lines
547 B
C#

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);
}
}