mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
59 lines
1.3 KiB
C#
59 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web.Enums
|
|
{
|
|
[Flags]
|
|
public enum Scope
|
|
{
|
|
[String("")]
|
|
None = 1,
|
|
|
|
[String("playlist-modify-public")]
|
|
PlaylistModifyPublic = 2,
|
|
|
|
[String("playlist-modify-private")]
|
|
PlaylistModifyPrivate = 4,
|
|
|
|
[String("playlist-read-private")]
|
|
PlaylistReadPrivate = 8,
|
|
|
|
[String("streaming")]
|
|
Streaming = 16,
|
|
|
|
[String("user-read-private")]
|
|
UserReadPrivate = 32,
|
|
|
|
[String("user-read-email")]
|
|
UserReadEmail = 64,
|
|
|
|
[String("user-library-read")]
|
|
UserLibraryRead = 128,
|
|
|
|
[String("user-library-modify")]
|
|
UserLibraryModify = 256,
|
|
|
|
[String("user-follow-modify")]
|
|
UserFollowModify = 512,
|
|
|
|
[String("user-follow-read")]
|
|
UserFollowRead = 1024,
|
|
|
|
[String("user-read-birthdate")]
|
|
UserReadBirthdate = 2048,
|
|
|
|
[String("user-top-read")]
|
|
UserTopRead = 4096,
|
|
|
|
[String("playlist-read-collaborative")]
|
|
PlaylistReadCollaborative = 8192,
|
|
|
|
[String("user-read-recently-played")]
|
|
UserReadRecentlyPlayed = 16384,
|
|
|
|
[String("user-read-playback-state")]
|
|
UserReadPlaybackState = 32768,
|
|
|
|
[String("user-modify-playback-state")]
|
|
UserModifyPlaybackState = 65536
|
|
}
|
|
} |