mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-03 04:52:04 -04:00
15 lines
445 B
C#
15 lines
445 B
C#
using System.Text.RegularExpressions;
|
|
using KfChatDotNetKickBot.Models.DbModels;
|
|
using KfChatDotNetWsClient.Models.Events;
|
|
|
|
namespace KfChatDotNetKickBot.Commands;
|
|
|
|
internal interface ICommand
|
|
{
|
|
List<Regex> Patterns { get; }
|
|
string HelpText { get; }
|
|
bool HideFromHelp { get; }
|
|
UserRight RequiredRight { get; }
|
|
|
|
Task RunCommand(KickBot botInstance, MessageModel message, GroupCollection arguments, CancellationToken ctx);
|
|
} |