2020-05-01 19:05:28 +01:00
|
|
|
using System.Collections.Generic;
|
2020-05-02 21:48:21 +01:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
|
2020-05-01 19:05:28 +01:00
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
2020-05-02 21:48:21 +01:00
|
|
|
public class FullEpisode : IPlaylistItem
|
2020-05-01 19:05:28 +01:00
|
|
|
{
|
|
|
|
public string AudioPreviewUrl { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public int DurationMs { get; set; }
|
|
|
|
public bool Explicit { get; set; }
|
|
|
|
public Dictionary<string, string> ExternalUrls { get; set; }
|
|
|
|
public string Href { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public List<Image> Images { get; set; }
|
|
|
|
public bool IsExternallyHosted { get; set; }
|
|
|
|
public bool IsPlayable { get; set; }
|
|
|
|
public List<string> Languages { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string ReleaseDate { get; set; }
|
|
|
|
public string ReleaseDatePrecision { get; set; }
|
|
|
|
public ResumePoint ResumePoint { get; set; }
|
|
|
|
public SimpleShow Show { get; set; }
|
2020-05-02 21:48:21 +01:00
|
|
|
|
|
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
|
|
public ItemType Type { get; set; }
|
2020-05-01 19:05:28 +01:00
|
|
|
public string Uri { get; set; }
|
|
|
|
}
|
|
|
|
}
|