cleaning up PluginManager (phase 1)
This commit is contained in:
14
DiscordBot/Utilities/Command.cs
Normal file
14
DiscordBot/Utilities/Command.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Discord.Commands;
|
||||
using Discord.WebSocket;
|
||||
|
||||
namespace DiscordBot.Utilities;
|
||||
|
||||
public class ConsoleCommand
|
||||
{
|
||||
public string? CommandName { get; init; }
|
||||
public string? Description { get; init; }
|
||||
public string? Usage { get; init; }
|
||||
public Action<string[]>? Action { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user