mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
49441bba95
Organised using statements alphabetically
44 lines
920 B
C#
44 lines
920 B
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")]
|
|
UserLibrarayRead = 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
|
|
}
|
|
} |