Added TTS Voice & TTS Voice State data classes. Renamed certain classes. Fixed some compiler warnings.
This commit is contained in:
@ -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; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user