16 lines
510 B
C#
16 lines
510 B
C#
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; }
|
|
}
|
|
}
|