MovieResult.cs 2.2 KB

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