Cleaned code up. Added OBS & 7tv ws support. Added dependency injection. App loads from yml file.
This commit is contained in:
16
OBS/Socket/Data/IdentifyMessage.cs
Normal file
16
OBS/Socket/Data/IdentifyMessage.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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 IdentifyMessage(int version, string auth, int subscriptions) {
|
||||
rpcVersion = version;
|
||||
authentication = auth;
|
||||
eventSubscriptions = subscriptions;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user