Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/ISpotifyClient.cs
2020-05-02 22:48:21 +02:00

14 lines
224 B
C#

namespace SpotifyAPI.Web
{
public interface ISpotifyClient
{
IUserProfileClient UserProfile { get; }
IBrowseClient Browse { get; }
IShowsClient Shows { get; }
IPlaylistsClient Playlists { get; }
}
}