Spotify.NET/SpotifyAPI.Web/Models/Response/BasePlayableItem.cs

19 lines
266 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace SpotifyAPI.Web
{
public enum ItemType
{
Track,
Episode
}
public class BasePlayableItem
{
[JsonConverter(typeof(StringEnumConverter))]
public ItemType Type { get; }
}
}