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
5 years ago
|
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; }
|
||
|
}
|
||
|
}
|