using System.Collections.Generic; using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace SpotifyAPI.Web { public class FullEpisode : IPlayableItem { public string AudioPreviewUrl { get; private set; } public string Description { get; private set; } public int DurationMs { get; private set; } public bool Explicit { get; private set; } public Dictionary ExternalUrls { get; private set; } public string Href { get; private set; } public string Id { get; private set; } public List Images { get; private set; } public bool IsExternallyHosted { get; private set; } public bool IsPlayable { get; private set; } public List Languages { get; private set; } public string Name { get; private set; } public string ReleaseDate { get; private set; } public string ReleaseDatePrecision { get; private set; } public ResumePoint ResumePoint { get; private set; } public SimpleShow Show { get; private set; } [JsonConverter(typeof(StringEnumConverter))] public ItemType Type { get; private set; } public string Uri { get; private set; } } }