mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
a9c4aba7fa
* Add interfaces for tokens * Delete UpgradeLog.htm * Changed Namespace Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
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; }
|
|
}
|
|
}
|