mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
Started TracksClient
This commit is contained in:
parent
9a7d46fb5a
commit
d36f360232
@ -13,5 +13,7 @@ namespace SpotifyAPI.Web
|
||||
ISearchClient Search { get; }
|
||||
|
||||
IFollowClient Follow { get; }
|
||||
|
||||
ITracksClient Tracks { get; }
|
||||
}
|
||||
}
|
||||
|
6
SpotifyAPI.Web/Clients/Interfaces/ITracksClient.cs
Normal file
6
SpotifyAPI.Web/Clients/Interfaces/ITracksClient.cs
Normal file
@ -0,0 +1,6 @@
|
||||
namespace SpotifyAPI.Web
|
||||
{
|
||||
public interface ITracksClient
|
||||
{
|
||||
}
|
||||
}
|
@ -21,6 +21,7 @@ namespace SpotifyAPI.Web
|
||||
Playlists = new PlaylistsClient(_apiConnector);
|
||||
Search = new SearchClient(_apiConnector);
|
||||
Follow = new FollowClient(_apiConnector);
|
||||
Tracks = new TracksClient(_apiConnector);
|
||||
}
|
||||
|
||||
public IUserProfileClient UserProfile { get; }
|
||||
@ -34,5 +35,7 @@ namespace SpotifyAPI.Web
|
||||
public ISearchClient Search { get; }
|
||||
|
||||
public IFollowClient Follow { get; }
|
||||
|
||||
public ITracksClient Tracks { get; }
|
||||
}
|
||||
}
|
||||
|
9
SpotifyAPI.Web/Clients/TracksClient.cs
Normal file
9
SpotifyAPI.Web/Clients/TracksClient.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using SpotifyAPI.Web.Http;
|
||||
|
||||
namespace SpotifyAPI.Web
|
||||
{
|
||||
public class TracksClient : APIClient, ITracksClient
|
||||
{
|
||||
public TracksClient(IAPIConnector apiConnector) : base(apiConnector) { }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user