Modified Login Ack message to provide more info.

This commit is contained in:
Tom 2024-08-10 19:37:33 +00:00
parent 9d838e66ad
commit 65522567a5
2 changed files with 13 additions and 0 deletions

View File

@ -3,5 +3,9 @@ namespace HermesSocketLibrary.Socket.Data
public class HermesLoginMessage
{
public string ApiKey { get; set; }
public string Password { get; set; }
public bool WebLogin { get; set; }
public int? MajorVersion { get; set; }
public int? MinorVersion { get; set; }
}
}

View File

@ -4,5 +4,14 @@ namespace HermesSocketLibrary.Socket.Data
{
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 IEnumerable<string> EnabledTTSVoices { get; set; }
public IDictionary<string, string> TTSVoicesAvailable { get; set; }
public Connection[] Connections { get; set; }
}
}