diff --git a/code/MessengerApi.Client.sln b/code/MessengerApi.Client.sln
index 20b43b1..4d3fa02 100644
--- a/code/MessengerApi.Client.sln
+++ b/code/MessengerApi.Client.sln
@@ -6,6 +6,8 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
ProjectSection(SolutionItems) = preProject
..\Directory.Packages.props = ..\Directory.Packages.props
+ ..\NuGet.config = ..\NuGet.config
+ ..\README.md = ..\README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
diff --git a/code/MessengerApi.Client/Client.cs b/code/MessengerApi.Client/Client.cs
index 4ebf0c0..91233c9 100644
--- a/code/MessengerApi.Client/Client.cs
+++ b/code/MessengerApi.Client/Client.cs
@@ -53,10 +53,9 @@ namespace MessengerApi
public class Client : IClient
{
- private readonly HttpClient _httpClient;
- private readonly ILogger _logger;
-
- private Credentials _credentials;
+ protected readonly Credentials _credentials;
+ protected readonly HttpClient _httpClient;
+ protected readonly ILogger _logger;
public Client(Credentials credentials, HttpClient httpClient = null, ILogger logger = null)
{
diff --git a/code/MessengerApi.Client/MessengerApi.Client.csproj b/code/MessengerApi.Client/MessengerApi.Client.csproj
index f03f9e1..f21bd7c 100644
--- a/code/MessengerApi.Client/MessengerApi.Client.csproj
+++ b/code/MessengerApi.Client/MessengerApi.Client.csproj
@@ -11,14 +11,13 @@