Added more info to login acknowledgement

This commit is contained in:
Tom 2024-10-22 07:44:46 +00:00
parent 23d407b760
commit 8183678bf0

View File

@ -1,3 +1,5 @@
using HermesSocketLibrary.Requests.Messages;
namespace HermesSocketLibrary.Socket.Data
{
public class LoginAckMessage
@ -9,9 +11,11 @@ namespace HermesSocketLibrary.Socket.Data
public bool WebLogin { get; set; }
public string DefaultTTSVoice { get; set; }
public IEnumerable<string> EnabledTTSVoices { get; set; }
public IList<string> EnabledTTSVoices { get; set; }
public IDictionary<string, string> TTSVoicesAvailable { get; set; }
public Connection[] Connections { get; set; }
public IList<TTSWordFilter> WordFilters { get; set; }
public IList<Connection> Connections { get; set; }
}
}