Spotify.NET/SpotifyAPI.Web/Enums/RepeatState.cs

17 lines
205 B
C#
Raw Permalink Normal View History

using System;
2017-05-29 22:17:15 +01:00
namespace SpotifyAPI.Web.Enums
{
[Flags]
public enum RepeatState
{
[String("track")]
Track = 1,
2017-05-29 22:17:15 +01:00
[String("context")]
Context = 2,
2017-05-29 22:17:15 +01:00
[String("off")]
Off = 4
}
2017-05-29 22:17:15 +01:00
}