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