using DiscordBotCore.PluginCore.Helpers.Execution.DbEvent;
namespace DiscordBotCore.PluginCore.Interfaces;
public interface IDbEvent
{
///
/// The name of the event
///
string Name { get; }
///
/// The description of the event
///
string Description { get; }
///
/// The method that is invoked when the event is loaded into memory
///
/// The arguments for the start method
void Start(IDbEventExecutingArgument args);
}