mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
20 lines
286 B
C#
20 lines
286 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SpotifyAPI.Web.Enums
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum TrackType
|
|||
|
{
|
|||
|
[String("track")]
|
|||
|
Track = 1,
|
|||
|
|
|||
|
[String("episode")]
|
|||
|
Episode = 2,
|
|||
|
|
|||
|
[String("ad")]
|
|||
|
Ad = 4,
|
|||
|
|
|||
|
[String("unknown")]
|
|||
|
Unknown = 8
|
|||
|
}
|
|||
|
}
|