13 lines
277 B
C#
13 lines
277 B
C#
|
using System.Diagnostics;
|
||
|
using System.Net.Http;
|
||
|
namespace CFCoreAPI.Endpoints
|
||
|
{
|
||
|
public abstract class APIBase
|
||
|
{
|
||
|
protected HttpClient httpClient;
|
||
|
public APIBase(HttpClient httpClient)
|
||
|
{
|
||
|
this.httpClient = httpClient;
|
||
|
}
|
||
|
}
|
||
|
}
|