using System.Collections.Generic; using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class ResultContainer { [JsonProperty("id")] public int Id { get; set; } [JsonProperty("results")] public List Results { get; set; } } }