You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
510 B
16 lines
510 B
namespace MediaBrowser.Providers.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; }
|
|
}
|
|
}
|