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

20 lines
341 B
C#
Raw Normal View History

2016-04-01 13:08:06 +01:00
using System;
namespace SpotifyAPI.Web.Enums
{
/// <summary>
/// Only one value allowed
/// </summary>
[Flags]
public enum TimeRangeType
{
[String("long_term")]
LongTerm = 1,
[String("medium_term")]
MediumTerm = 2,
[String("short_term")]
ShortTerm = 4
}
}