mirror of
https://github.com/Jetsparrow/antiantiswearingbot.git
synced 2026-01-20 23:16:08 +03:00
7 lines
141 B
C#
7 lines
141 B
C#
namespace Jetsparrow.Aasb.Commands;
|
|
public interface IChatCommand
|
|
{
|
|
bool Authorize { get; }
|
|
string Execute(CommandContext cmd);
|
|
}
|