Added TTS Voice & TTS Voice State data classes. Renamed certain classes. Fixed some compiler warnings.

This commit is contained in:
Tom
2025-01-17 04:38:03 +00:00
parent 78bab88165
commit e7a3b2a367
20 changed files with 70 additions and 55 deletions

View File

@ -2,8 +2,8 @@ namespace HermesSocketLibrary.Socket.Data
{
public class HermesLoginMessage
{
public string ApiKey { get; set; }
public string Password { get; set; }
public required string ApiKey { get; set; }
public string? Password { get; set; }
public bool WebLogin { get; set; }
public int? MajorVersion { get; set; }
public int? MinorVersion { get; set; }