Spotify.NET/SpotifyAPI.Web/Models/Response/Interfaces/IUserToken.cs

14 lines
280 B
C#
Raw Normal View History

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; }
}
}