2019-08-18 11:20:52 +00:00
|
|
|
namespace MediaBrowser.Providers.Tmdb.Models.General
|
|
|
|
{
|
|
|
|
public class Poster
|
|
|
|
{
|
2019-08-18 12:44:13 +00:00
|
|
|
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; }
|
2019-08-18 11:20:52 +00:00
|
|
|
}
|
|
|
|
}
|