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

10 lines
143 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
namespace SpotifyAPI.Web
{
interface ISpotifyClient
{
IUserProfileClient UserProfile { get; }
IBrowseClient Browse { get; }
}
}