2024-07-16 04:48:55 +00:00
|
|
|
using TwitchChatTTS.Hermes.Socket;
|
2024-08-04 23:46:10 +00:00
|
|
|
using TwitchChatTTS.Twitch.Socket.Messages;
|
2024-07-19 16:56:41 +00:00
|
|
|
using static TwitchChatTTS.Chat.Commands.TTSCommands;
|
2024-03-15 12:27:35 +00:00
|
|
|
|
|
|
|
namespace TwitchChatTTS.Chat.Commands
|
|
|
|
{
|
2024-08-04 23:46:10 +00:00
|
|
|
public interface IChatCommand
|
|
|
|
{
|
2024-07-19 16:56:41 +00:00
|
|
|
string Name { get; }
|
|
|
|
void Build(ICommandBuilder builder);
|
|
|
|
}
|
2024-03-15 12:27:35 +00:00
|
|
|
|
2024-08-04 23:46:10 +00:00
|
|
|
public interface IChatPartialCommand
|
|
|
|
{
|
2024-07-19 16:56:41 +00:00
|
|
|
bool AcceptCustomPermission { get; }
|
2024-08-06 19:29:29 +00:00
|
|
|
Task Execute(IDictionary<string, string> values, ChannelChatMessage message, HermesSocketClient hermes);
|
2024-03-15 12:27:35 +00:00
|
|
|
}
|
|
|
|
}
|