26 lines
558 B
C#
26 lines
558 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Search
|
|
{
|
|
public class TvResult
|
|
{
|
|
public string Backdrop_Path { get; set; }
|
|
|
|
public string First_Air_Date { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Original_Name { get; set; }
|
|
|
|
public string Poster_Path { get; set; }
|
|
|
|
public double Popularity { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public double Vote_Average { get; set; }
|
|
|
|
public int Vote_Count { get; set; }
|
|
}
|
|
}
|