mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
14 lines
280 B
C#
14 lines
280 B
C#
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// A token which allows you to access the API as user
|
||
|
/// </summary>
|
||
|
public interface IUserToken : IToken
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Comma-Seperated list of scopes
|
||
|
/// </summary>
|
||
|
public string Scope { get; set; }
|
||
|
}
|
||
|
}
|