Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/ISpotifyClient.cs
2020-05-02 13:04:26 +02:00

10 lines
150 B
C#

namespace SpotifyAPI.Web
{
public interface ISpotifyClient
{
IUserProfileClient UserProfile { get; }
IBrowseClient Browse { get; }
}
}