using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class SingleResultContainer { [JsonProperty("id")] public int Id { get; set; } [JsonProperty("results")] public T Results { get; set; } } }