2024-10-22 07:44:46 +00:00
|
|
|
using HermesSocketLibrary.Requests.Messages;
|
|
|
|
|
2024-06-24 22:31:45 +00:00
|
|
|
namespace HermesSocketLibrary.Socket.Data
|
|
|
|
{
|
|
|
|
public class LoginAckMessage
|
|
|
|
{
|
|
|
|
public string UserId { get; set; }
|
2025-01-17 04:38:03 +00:00
|
|
|
public string ProviderAccountId { get; set; }
|
|
|
|
public string SessionId { get; set; }
|
|
|
|
public string UserName { get; set; }
|
2024-06-24 22:31:45 +00:00
|
|
|
public bool AnotherClient { get; set; }
|
2024-08-10 19:37:33 +00:00
|
|
|
public long? OwnerId { get; set; }
|
|
|
|
public bool Admin { get; set; }
|
|
|
|
public bool WebLogin { get; set; }
|
2025-03-06 16:07:16 +00:00
|
|
|
public bool Slave { get; set; }
|
2024-08-10 19:37:33 +00:00
|
|
|
|
|
|
|
public string DefaultTTSVoice { get; set; }
|
2024-10-22 07:44:46 +00:00
|
|
|
public IList<string> EnabledTTSVoices { get; set; }
|
2024-08-10 19:37:33 +00:00
|
|
|
public IDictionary<string, string> TTSVoicesAvailable { get; set; }
|
|
|
|
|
2025-01-17 04:38:03 +00:00
|
|
|
public IEnumerable<TTSWordFilter> WordFilters { get; set; }
|
2024-10-22 07:44:46 +00:00
|
|
|
|
|
|
|
public IList<Connection> Connections { get; set; }
|
2024-06-24 22:31:45 +00:00
|
|
|
}
|
|
|
|
}
|