jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/TvShows/TvEpisodeBase.cs

33 lines
796 B
C#

using Newtonsoft.Json;
using System;
namespace TMDbLib.Objects.TvShows
{
public class TvEpisodeBase : TvEpisodeInfo
{
[JsonProperty("air_date")]
public DateTime? AirDate { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("overview")]
public string Overview { get; set; }
[JsonProperty("production_code")]
public string ProductionCode { get; set; }
[JsonProperty("show_id")]
public int ShowId { get; set; }
[JsonProperty("still_path")]
public string StillPath { get; set; }
[JsonProperty("vote_average")]
public double VoteAverage { get; set; }
[JsonProperty("vote_count")]
public int VoteCount { get; set; }
}
}