forked from JohnnyCrazy/SpotifyAPI-NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScope.cs
More file actions
37 lines (36 loc) · 1.12 KB
/
Scope.cs
File metadata and controls
37 lines (36 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SpotifyAPI.SpotifyWebAPI
{
[Flags]
public enum Scope
{
[StringAttribute("")]
NONE = 1,
[StringAttribute("playlist-modify-public")]
PLAYLIST_MODIFY_PUBLIC = 2,
[StringAttribute("playlist-modify-private")]
PLAYLIST_MODIFY_PRIVATE = 4,
[StringAttribute("playlist-read-private")]
PLAYLIST_READ_PRIVATE = 8,
[StringAttribute("streaming")]
STREAMING = 16,
[StringAttribute("user-read-private")]
USER_READ_PRIVATE = 32,
[StringAttribute("user-read-email")]
USER_READ_EMAIL = 64,
[StringAttribute("user-library-read")]
USER_LIBRARAY_READ = 128,
[StringAttribute("user-library-modify")]
USER_LIBRARY_MODIFY = 256,
[StringAttribute("user-follow-modify")]
USER_FOLLOW_MODIFY = 512,
[StringAttribute("user-follow-read")]
USER_FOLLOW_READ = 1024,
[StringAttribute("user-read-birthdate")]
USER_READ_BIRTHDATE = 2048
}
}