mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
14 lines
224 B
C#
14 lines
224 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public interface ISpotifyClient
|
|
{
|
|
IUserProfileClient UserProfile { get; }
|
|
|
|
IBrowseClient Browse { get; }
|
|
|
|
IShowsClient Shows { get; }
|
|
|
|
IPlaylistsClient Playlists { get; }
|
|
}
|
|
}
|