Fixed a lot of compiler warnings. Fixed 7tv connection.

This commit is contained in:
Tom
2025-01-17 00:54:47 +00:00
parent b8d0e8cfd8
commit 5e33d594d2
78 changed files with 314 additions and 235 deletions

View File

@@ -2,13 +2,13 @@ namespace TwitchChatTTS.OBS.Socket.Data
{
public class HelloMessage
{
public string ObsWebSocketVersion { get; set; }
public required string ObsWebSocketVersion { get; set; }
public int RpcVersion { get; set; }
public AuthenticationMessage Authentication { get; set; }
public required AuthenticationMessage Authentication { get; set; }
}
public class AuthenticationMessage {
public string Challenge { get; set; }
public string Salt { get; set; }
public required string Challenge { get; set; }
public required string Salt { get; set; }
}
}