Spotify.NET/SpotifyAPI.Web/Models/Response/Interfaces/IUserToken.cs
Tim Ittermann a9c4aba7fa
Add interfaces for tokens (#499)
* Add interfaces for tokens

* Delete UpgradeLog.htm

* Changed Namespace

Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
2020-08-26 15:38:00 +02:00

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