Fix access issue in `SessionIdentification` class

Signed-off-by: Aliwoto <aminnimaj@gmail.com>
This commit is contained in:
Aliwoto 2021-10-01 16:45:26 +00:00
parent a23ef86d83
commit 70ef761e20
No known key found for this signature in database
GPG Key ID: 646B4FE4205EC48C
1 changed files with 2 additions and 2 deletions

View File

@ -29,13 +29,13 @@ namespace Socialvoid.Security
/// <code> since: v0.0.0 </code>
/// </summary>
[JsonPropertyName("session_id")]
public string SessionID { get; internal set; }
public string SessionID { get; set; }
/// <summary>
/// The Public Hash of the client used when establishing the session.
/// <code> since: v0.0.0 </code>
/// </summary>
[JsonPropertyName("client_public_hash")]
public string ClientPublicHash { get; internal set; }
public string ClientPublicHash { get; set; }
/// <summary>
/// The session challenge answer revolving around the client's
/// private hash, the same client used to establish the session.