2024-03-12 18:05:27 +00:00
|
|
|
namespace TwitchChatTTS.OBS.Socket.Data
|
|
|
|
{
|
|
|
|
public class EventMessage
|
|
|
|
{
|
2024-03-15 12:27:35 +00:00
|
|
|
public string EventType { get; set; }
|
|
|
|
public int EventIntent { get; set; }
|
|
|
|
public Dictionary<string, object> EventData { get; set; }
|
2024-03-12 18:05:27 +00:00
|
|
|
}
|
|
|
|
}
|