Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/ISpotifyClient.cs
2020-05-01 20:05:28 +02:00

10 lines
143 B
C#

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