MovieResult.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Search
  2. {
  3. public class MovieResult
  4. {
  5. /// <summary>
  6. /// Gets or sets a value indicating whether this <see cref="MovieResult" /> is adult.
  7. /// </summary>
  8. /// <value><c>true</c> if adult; otherwise, <c>false</c>.</value>
  9. public bool Adult { get; set; }
  10. /// <summary>
  11. /// Gets or sets the backdrop_path.
  12. /// </summary>
  13. /// <value>The backdrop_path.</value>
  14. public string Backdrop_Path { get; set; }
  15. /// <summary>
  16. /// Gets or sets the id.
  17. /// </summary>
  18. /// <value>The id.</value>
  19. public int Id { get; set; }
  20. /// <summary>
  21. /// Gets or sets the original_title.
  22. /// </summary>
  23. /// <value>The original_title.</value>
  24. public string Original_Title { get; set; }
  25. /// <summary>
  26. /// Gets or sets the original_name.
  27. /// </summary>
  28. /// <value>The original_name.</value>
  29. public string Original_Name { get; set; }
  30. /// <summary>
  31. /// Gets or sets the release_date.
  32. /// </summary>
  33. /// <value>The release_date.</value>
  34. public string Release_Date { get; set; }
  35. /// <summary>
  36. /// Gets or sets the poster_path.
  37. /// </summary>
  38. /// <value>The poster_path.</value>
  39. public string Poster_Path { get; set; }
  40. /// <summary>
  41. /// Gets or sets the popularity.
  42. /// </summary>
  43. /// <value>The popularity.</value>
  44. public double Popularity { get; set; }
  45. /// <summary>
  46. /// Gets or sets the title.
  47. /// </summary>
  48. /// <value>The title.</value>
  49. public string Title { get; set; }
  50. /// <summary>
  51. /// Gets or sets the vote_average.
  52. /// </summary>
  53. /// <value>The vote_average.</value>
  54. public double Vote_Average { get; set; }
  55. /// <summary>
  56. /// For collection search results
  57. /// </summary>
  58. public string Name { get; set; }
  59. /// <summary>
  60. /// Gets or sets the vote_count.
  61. /// </summary>
  62. /// <value>The vote_count.</value>
  63. public int Vote_Count { get; set; }
  64. }
  65. }