using System.Collections.Generic; namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Search { public class TmdbSearchResult { /// /// Gets or sets the page. /// /// The page. public int Page { get; set; } /// /// Gets or sets the results. /// /// The results. public List Results { get; set; } /// /// Gets or sets the total_pages. /// /// The total_pages. public int Total_Pages { get; set; } /// /// Gets or sets the total_results. /// /// The total_results. public int Total_Results { get; set; } } }