mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
26 lines
725 B
C#
26 lines
725 B
C#
using System.Threading.Tasks;
|
|
using SpotifyAPI.Web.Models;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public interface IUserProfileClient
|
|
{
|
|
/// <summary>
|
|
/// Test
|
|
/// </summary>
|
|
/// <exception cref="APIUnauthorizedException">Thrown if the client is not authenticated.</exception>
|
|
/// <returns>A <see cref="PrivateUser"/></returns>
|
|
Task<PrivateUser> Current();
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <exception cref="APIUnauthorizedException">Thrown if the client is not authenticated.</exception>
|
|
/// <returns></returns>
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
|
Task<PublicUser> Get(string userId);
|
|
}
|
|
}
|