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 IdentifyMessage
|
||||
{
|
||||
public int rpcVersion { get; set; }
|
||||
public string? authentication { get; set; }
|
||||
public int eventSubscriptions { get; set; }
|
||||
public int RpcVersion { get; set; }
|
||||
public string? Authentication { get; set; }
|
||||
public int EventSubscriptions { get; set; }
|
||||
|
||||
public IdentifyMessage(int version, string auth, int subscriptions) {
|
||||
rpcVersion = version;
|
||||
authentication = auth;
|
||||
eventSubscriptions = subscriptions;
|
||||
RpcVersion = version;
|
||||
Authentication = auth;
|
||||
EventSubscriptions = subscriptions;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user