2024-06-24 22:31:45 +00:00
|
|
|
namespace HermesSocketLibrary.Socket.Data
|
|
|
|
{
|
|
|
|
public class LoginAckMessage
|
|
|
|
{
|
|
|
|
public string UserId { get; set; }
|
|
|
|
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; }
|
|
|
|
|
|
|
|
public string DefaultTTSVoice { get; set; }
|
|
|
|
public IEnumerable<string> EnabledTTSVoices { get; set; }
|
|
|
|
public IDictionary<string, string> TTSVoicesAvailable { get; set; }
|
|
|
|
|
|
|
|
public Connection[] Connections { get; set; }
|
2024-06-24 22:31:45 +00:00
|
|
|
}
|
|
|
|
}
|