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