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

13 lines
223 B
C#

using Discord.WebSocket;
namespace PluginManager.Interfaces
{
public interface DBEvent
{
string name { get; }
string description { get; }
void Start(DiscordSocketClient client);
}
}