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