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