14 lines
247 B
C#
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; }
|
|
}
|
|
} |