Modified Login Ack message to provide more info.
This commit is contained in:
parent
9d838e66ad
commit
65522567a5
@ -3,5 +3,9 @@ namespace HermesSocketLibrary.Socket.Data
|
|||||||
public class HermesLoginMessage
|
public class HermesLoginMessage
|
||||||
{
|
{
|
||||||
public string ApiKey { get; set; }
|
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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -4,5 +4,14 @@ namespace HermesSocketLibrary.Socket.Data
|
|||||||
{
|
{
|
||||||
public string UserId { get; set; }
|
public string UserId { get; set; }
|
||||||
public bool AnotherClient { 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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user