TmdbSearchResult.cs 864 B

123456789101112131415161718192021222324252627282930313233
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Search
  4. {
  5. public class TmdbSearchResult<T>
  6. {
  7. /// <summary>
  8. /// Gets or sets the page.
  9. /// </summary>
  10. /// <value>The page.</value>
  11. public int Page { get; set; }
  12. /// <summary>
  13. /// Gets or sets the results.
  14. /// </summary>
  15. /// <value>The results.</value>
  16. public List<T> Results { get; set; }
  17. /// <summary>
  18. /// Gets or sets the total_pages.
  19. /// </summary>
  20. /// <value>The total_pages.</value>
  21. public int Total_Pages { get; set; }
  22. /// <summary>
  23. /// Gets or sets the total_results.
  24. /// </summary>
  25. /// <value>The total_results.</value>
  26. public int Total_Results { get; set; }
  27. }
  28. }