This repository has been archived on 2025-05-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novaloop.paymoapi/src/Shared/PaymoApiClient.cs
Matthias Langhard 75a687e31e chore: initial commit
2020-12-09 12:36:26 +01:00

14 lines
247 B
C#

using System.Net.Http;
namespace Novaloop.PaymoApi.Shared
{
public class PaymoApiClient
{
public PaymoApiClient(HttpClient client)
{
Client = client;
}
public HttpClient Client { get; }
}
}