mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
20 lines
341 B
C#
20 lines
341 B
C#
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
|
|
}
|
|
} |