using System.Threading.Tasks;
using SpotifyAPI.Web.Models;
namespace SpotifyAPI.Web
{
public interface IUserProfileClient
{
///
/// Test
///
/// Thrown if the client is not authenticated.
/// A
Task Current();
///
///
///
///
/// Thrown if the client is not authenticated.
///
Task Get(string userId);
}
}