jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Search/SearchTvEpisode.cs

44 lines
1.1 KiB
C#

using System;
using Newtonsoft.Json;
using TMDbLib.Objects.General;
namespace TMDbLib.Objects.Search
{
public class SearchTvEpisode : SearchBase
{
public SearchTvEpisode()
{
MediaType = MediaType.Episode;
}
[JsonProperty("air_date")]
public DateTime? AirDate { get; set; }
[JsonProperty("episode_number")]
public int EpisodeNumber { 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("season_number")]
public int SeasonNumber { 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; }
}
}