mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
17 lines
205 B
C#
17 lines
205 B
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web.Enums
|
|
{
|
|
[Flags]
|
|
public enum RepeatState
|
|
{
|
|
[String("track")]
|
|
Track = 1,
|
|
|
|
[String("context")]
|
|
Context = 2,
|
|
|
|
[String("off")]
|
|
Off = 4
|
|
}
|
|
} |