CurrencyAlertClassic/KamiLib/Interfaces/ISubCommand.cs

14 lines
326 B
C#
Raw Permalink Normal View History

2023-10-13 09:38:52 +00:00
using System.Collections.Generic;
using KamiLib.ChatCommands;
namespace KamiLib.Interfaces;
public interface ISubCommand
{
string? GetCommand();
IEnumerable<string>? GetAliases();
bool Execute(CommandData commandData);
string? GetHelpText();
bool Hidden { get; }
bool HasParameterAction { get; }
}