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. /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")] Task Get(string userId); } }