8 lines
223 B
C#
8 lines
223 B
C#
|
namespace TwitchChatTTS.Hermes.Socket.Requests
|
||
|
{
|
||
|
public interface IRequestAck
|
||
|
{
|
||
|
string Name { get; }
|
||
|
void Acknowledge(string requestId, string json, IDictionary<string, object>? requestData);
|
||
|
}
|
||
|
}
|