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

17 lines
240 B
C#
Raw Normal View History

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