Fixed some minor things.

This commit is contained in:
Tom
2025-01-18 17:34:02 +00:00
parent 9f884f71ae
commit c373af5281
2 changed files with 5 additions and 4 deletions

View File

@ -4,6 +4,6 @@ namespace TwitchChatTTS.OBS.Socket.Data
{
public required string EventType { get; set; }
public int EventIntent { get; set; }
public required Dictionary<string, object> EventData { get; set; }
public Dictionary<string, object>? EventData { get; set; }
}
}