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

@ -5,6 +5,9 @@ namespace HermesSocketLibrary.Socket.Data
public class LoginAckMessage
{
public string UserId { get; set; }
public string ProviderAccountId { get; set; }
public string SessionId { get; set; }
public string UserName { get; set; }
public bool AnotherClient { get; set; }
public long? OwnerId { get; set; }
public bool Admin { get; set; }
@ -14,7 +17,7 @@ namespace HermesSocketLibrary.Socket.Data
public IList<string> EnabledTTSVoices { get; set; }
public IDictionary<string, string> TTSVoicesAvailable { get; set; }
public IList<TTSWordFilter> WordFilters { get; set; }
public IEnumerable<TTSWordFilter> WordFilters { get; set; }
public IList<Connection> Connections { get; set; }
}