From 70ef761e20e20bc1dac271d8dfd824d2c6913780 Mon Sep 17 00:00:00 2001 From: Aliwoto Date: Fri, 1 Oct 2021 16:45:26 +0000 Subject: [PATCH] Fix access issue in `SessionIdentification` class Signed-off-by: Aliwoto --- Socialvoid/Security/SessionIdentification.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Socialvoid/Security/SessionIdentification.cs b/Socialvoid/Security/SessionIdentification.cs index 48ae07e..60f6ca2 100644 --- a/Socialvoid/Security/SessionIdentification.cs +++ b/Socialvoid/Security/SessionIdentification.cs @@ -29,13 +29,13 @@ namespace Socialvoid.Security /// since: v0.0.0 /// [JsonPropertyName("session_id")] - public string SessionID { get; internal set; } + public string SessionID { get; set; } /// /// The Public Hash of the client used when establishing the session. /// since: v0.0.0 /// [JsonPropertyName("client_public_hash")] - public string ClientPublicHash { get; internal set; } + public string ClientPublicHash { get; set; } /// /// The session challenge answer revolving around the client's /// private hash, the same client used to establish the session.