Fixed getting scene item id from OBS.

This commit is contained in:
Tom
2025-01-18 16:37:04 +00:00
parent 5e33d594d2
commit aed0421843

View File

@ -5,6 +5,6 @@ namespace TwitchChatTTS.OBS.Socket.Data
public required string RequestType { get; set; }
public required string RequestId { get; set; }
public required object RequestStatus { get; set; }
public required Dictionary<string, object> ResponseData { get; set; }
public Dictionary<string, object>? ResponseData { get; set; }
}
}