jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/Search/TvResult.cs

26 lines
558 B
C#
Raw Normal View History

#pragma warning disable CS1591
2020-05-31 06:23:09 +00:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Search
{
public class TvResult
{
2019-08-18 12:44:13 +00:00
public string Backdrop_Path { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public string First_Air_Date { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public int Id { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public string Original_Name { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public string Poster_Path { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public double Popularity { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public string Name { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public double Vote_Average { get; set; }
2020-06-15 21:43:52 +00:00
2019-08-18 12:44:13 +00:00
public int Vote_Count { get; set; }
}
}