Added hermes websocket support. Added chat command support. Added selectable voice command via websocket. Added websocket heartbeat management.
This commit is contained in:
@@ -3,14 +3,14 @@ namespace TwitchChatTTS.OBS.Socket.Data
|
||||
[Serializable]
|
||||
public class RequestMessage
|
||||
{
|
||||
public string requestType { get; set; }
|
||||
public string requestId { get; set; }
|
||||
public Dictionary<string, object> requestData { get; set; }
|
||||
public string RequestType { get; set; }
|
||||
public string RequestId { get; set; }
|
||||
public Dictionary<string, object> RequestData { get; set; }
|
||||
|
||||
public RequestMessage(string type, string id, Dictionary<string, object> data) {
|
||||
requestType = type;
|
||||
requestId = id;
|
||||
requestData = data;
|
||||
RequestType = type;
|
||||
RequestId = id;
|
||||
RequestData = data;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user