chore: initial commit

This commit is contained in:
Matthias Langhard
2021-04-12 13:54:09 +02:00
commit 2a2527f0da
64 changed files with 12106 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System.Net.Http;
namespace Novaloop.BexioApi.Shared.ApiClient
{
public class BexioApiClient
{
public BexioApiClient(HttpClient client)
{
Client = client;
}
public HttpClient Client { get; }
}
}