8 lines
209 B
C#
8 lines
209 B
C#
|
namespace TwitchChatTTS.Veadotube.Handlers
|
||
|
{
|
||
|
public interface IVeadotubeMessageHandler
|
||
|
{
|
||
|
string Name { get; }
|
||
|
Task Handle(VeadoSocketClient client, VeadoPayloadMessage message);
|
||
|
}
|
||
|
}
|