18 lines
507 B
C#
18 lines
507 B
C#
using TwitchChatTTS.Hermes.Socket;
|
|
using TwitchChatTTS.Twitch.Socket.Messages;
|
|
using static TwitchChatTTS.Chat.Commands.TTSCommands;
|
|
|
|
namespace TwitchChatTTS.Chat.Commands
|
|
{
|
|
public interface IChatCommand
|
|
{
|
|
string Name { get; }
|
|
void Build(ICommandBuilder builder);
|
|
}
|
|
|
|
public interface IChatPartialCommand
|
|
{
|
|
bool AcceptCustomPermission { get; }
|
|
Task Execute(IDictionary<string, string> values, ChannelChatMessage message, HermesSocketClient hermes);
|
|
}
|
|
} |