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