mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
17 lines
297 B
C#
17 lines
297 B
C#
|
using SpotifyAPI.Web.Http;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public abstract class APIClient
|
||
|
{
|
||
|
public APIClient(IAPIConnector apiConnector)
|
||
|
{
|
||
|
Ensure.ArgumentNotNull(apiConnector, nameof(apiConnector));
|
||
|
|
||
|
API = apiConnector;
|
||
|
}
|
||
|
|
||
|
public IAPIConnector API { get; set; }
|
||
|
}
|
||
|
}
|