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