16 lines
450 B
C#
16 lines
450 B
C#
namespace TwitchChatTTS.OBS.Socket.Data
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
} |