using HermesSocketLibrary.Requests.Messages; namespace HermesSocketLibrary.Socket.Data { public class LoginAckMessage { public string UserId { get; set; } public bool AnotherClient { get; set; } public long? OwnerId { get; set; } public bool Admin { get; set; } public bool WebLogin { get; set; } public string DefaultTTSVoice { get; set; } public IList EnabledTTSVoices { get; set; } public IDictionary TTSVoicesAvailable { get; set; } public IList WordFilters { get; set; } public IList Connections { get; set; } } }