using System.Collections.Generic; using Newtonsoft.Json; using TMDbLib.Objects.Search; namespace TMDbLib.Objects.Find { public class FindContainer { [JsonProperty("movie_results")] public List MovieResults { get; set; } [JsonProperty("person_results")] public List PersonResults { get; set; } // Unconfirmed type [JsonProperty("tv_episode_results")] public List TvEpisode { get; set; } [JsonProperty("tv_results")] public List TvResults { get; set; } [JsonProperty("tv_season_results")] public List TvSeason { get; set; } } }