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.
14 lines
408 B
14 lines
408 B
namespace MediaBrowser.Providers.Tmdb.Models.General
|
|
{
|
|
public class Backdrop
|
|
{
|
|
public double aspect_ratio { get; set; }
|
|
public string file_path { get; set; }
|
|
public int height { get; set; }
|
|
public string iso_639_1 { get; set; }
|
|
public double vote_average { get; set; }
|
|
public int vote_count { get; set; }
|
|
public int width { get; set; }
|
|
}
|
|
}
|