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