diff --git a/TMDbLib/Objects/Search/SearchCollection.cs b/TMDbLib/Objects/Search/SearchCollection.cs index 7e6f8b9d..691f1db6 100644 --- a/TMDbLib/Objects/Search/SearchCollection.cs +++ b/TMDbLib/Objects/Search/SearchCollection.cs @@ -4,6 +4,9 @@ namespace TMDbLib.Objects.Search { public class SearchCollection { + [JsonProperty("adult")] + public bool Adult { get; set; } + [JsonProperty("backdrop_path")] public string BackdropPath { get; set; } @@ -12,6 +15,15 @@ public class SearchCollection [JsonProperty("name")] public string Name { get; set; } + + [JsonProperty("original_language")] + public string OriginalLanguage { get; set; } + + [JsonProperty("original_name")] + public string OriginalName { get; set; } + + [JsonProperty("overview")] + public string Overview { get; set; } [JsonProperty("poster_path")] public string PosterPath { get; set; }