Added app remote control scope (#309)

* Added app-remote-control authorization scope

* Fixed tabs to spaces
This commit is contained in:
Steven 2018-12-17 22:07:57 +01:00 committed by Jonas Dellinger
parent 467984c6f8
commit 30d396618b

View File

@ -55,8 +55,11 @@ namespace SpotifyAPI.Web.Enums
[String("user-modify-playback-state")] [String("user-modify-playback-state")]
UserModifyPlaybackState = 65536, UserModifyPlaybackState = 65536,
[String("user-read-currently-playing")] [String("user-read-currently-playing")]
UserReadCurrentlyPlaying = 131072 UserReadCurrentlyPlaying = 131072,
[String("app-remote-control")]
AppRemoteControl = 262144
} }
} }