Skip to content

Commit

Permalink
Merge pull request #483 from DineshSolanki/add-missing-search-collect…
Browse files Browse the repository at this point in the history
…ion-properties
  • Loading branch information
crobibero committed Mar 10, 2024
2 parents 75e52b5 + 85bba31 commit 676ee77
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions TMDbLib/Objects/Search/SearchCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

Expand All @@ -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; }
Expand Down

0 comments on commit 676ee77

Please sign in to comment.