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

32 lines
1.1 KiB
C#
Raw Normal View History

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-07 17:03:20 +01:00
public class FullEpisode : IPlayableItem
2020-05-01 19:05:28 +01:00
{
2020-05-25 17:00:38 +01:00
public string AudioPreviewUrl { get; set; } = default!;
public string Description { get; set; } = default!;
public int DurationMs { get; set; }
public bool Explicit { get; set; }
2020-05-25 17:00:38 +01:00
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
public string Href { get; set; } = default!;
public string Id { get; set; } = default!;
public List<Image> Images { get; set; } = default!;
public bool IsExternallyHosted { get; set; }
public bool IsPlayable { get; set; }
2020-05-25 17:00:38 +01:00
public List<string> Languages { get; set; } = default!;
public string Name { get; set; } = default!;
public string ReleaseDate { get; set; } = default!;
public string ReleaseDatePrecision { get; set; } = default!;
public ResumePoint ResumePoint { get; set; } = default!;
public SimpleShow Show { get; set; } = default!;
2020-05-02 21:48:21 +01:00
[JsonConverter(typeof(StringEnumConverter))]
public ItemType Type { get; set; }
2020-05-25 17:00:38 +01:00
public string Uri { get; set; } = default!;
2020-05-01 19:05:28 +01:00
}
}
2020-05-25 17:00:38 +01:00