jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/General/SearchContainer.cs

20 lines
465 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace TMDbLib.Objects.General
{
public class SearchContainer<T>
{
[JsonProperty("page")]
public int Page { get; set; }
[JsonProperty("results")]
public List<T> Results { get; set; }
[JsonProperty("total_pages")]
public int TotalPages { get; set; }
[JsonProperty("total_results")]
public int TotalResults { get; set; }
}
}