Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/ISpotifyClient.cs

14 lines
224 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
namespace SpotifyAPI.Web
{
public interface ISpotifyClient
2020-05-01 19:05:28 +01:00
{
IUserProfileClient UserProfile { get; }
IBrowseClient Browse { get; }
2020-05-02 21:48:21 +01:00
IShowsClient Shows { get; }
IPlaylistsClient Playlists { get; }
2020-05-01 19:05:28 +01:00
}
}