Started TracksClient

This commit is contained in:
Jonas Dellinger 2020-05-04 23:04:59 +02:00
parent 9a7d46fb5a
commit d36f360232
4 changed files with 20 additions and 0 deletions

View File

@ -13,5 +13,7 @@ namespace SpotifyAPI.Web
ISearchClient Search { get; } ISearchClient Search { get; }
IFollowClient Follow { get; } IFollowClient Follow { get; }
ITracksClient Tracks { get; }
} }
} }

View File

@ -0,0 +1,6 @@
namespace SpotifyAPI.Web
{
public interface ITracksClient
{
}
}

View File

@ -21,6 +21,7 @@ namespace SpotifyAPI.Web
Playlists = new PlaylistsClient(_apiConnector); Playlists = new PlaylistsClient(_apiConnector);
Search = new SearchClient(_apiConnector); Search = new SearchClient(_apiConnector);
Follow = new FollowClient(_apiConnector); Follow = new FollowClient(_apiConnector);
Tracks = new TracksClient(_apiConnector);
} }
public IUserProfileClient UserProfile { get; } public IUserProfileClient UserProfile { get; }
@ -34,5 +35,7 @@ namespace SpotifyAPI.Web
public ISearchClient Search { get; } public ISearchClient Search { get; }
public IFollowClient Follow { get; } public IFollowClient Follow { get; }
public ITracksClient Tracks { get; }
} }
} }

View File

@ -0,0 +1,9 @@
using SpotifyAPI.Web.Http;
namespace SpotifyAPI.Web
{
public class TracksClient : APIClient, ITracksClient
{
public TracksClient(IAPIConnector apiConnector) : base(apiConnector) { }
}
}