2019-08-18 11:20:52 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Tmdb.Models.Search
|
|
|
|
{
|
2019-08-18 12:44:13 +00:00
|
|
|
public class TmdbSearchResult<T>
|
2019-08-18 11:20:52 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the page.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The page.</value>
|
2019-08-18 12:44:13 +00:00
|
|
|
public int Page { get; set; }
|
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the results.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The results.</value>
|
2019-08-18 12:44:13 +00:00
|
|
|
public List<T> Results { get; set; }
|
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the total_pages.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The total_pages.</value>
|
2019-08-18 12:44:13 +00:00
|
|
|
public int Total_Pages { get; set; }
|
|
|
|
|
2019-08-18 11:20:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the total_results.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The total_results.</value>
|
2019-08-18 12:44:13 +00:00
|
|
|
public int Total_Results { get; set; }
|
2019-08-18 11:20:52 +00:00
|
|
|
}
|
|
|
|
}
|