Backdrop.cs 416 B

12345678910111213
  1. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
  2. {
  3. public class Backdrop
  4. {
  5. public double Aspect_Ratio { get; set; }
  6. public string File_Path { get; set; }
  7. public int Height { get; set; }
  8. public string Iso_639_1 { get; set; }
  9. public double Vote_Average { get; set; }
  10. public int Vote_Count { get; set; }
  11. public int Width { get; set; }
  12. }
  13. }