using System.Collections.Generic; using Newtonsoft.Json; using TMDbLib.Utilities.Converters; namespace TMDbLib.Objects.Search { public class SearchMovieTvBase : SearchBase { [JsonProperty("backdrop_path")] public string BackdropPath { get; set; } [JsonProperty("genre_ids")] [JsonConverter(typeof(TmdbIntArrayAsObjectConverter)) /*#307*/] public List GenreIds { get; set; } [JsonProperty("original_language")] public string OriginalLanguage { get; set; } [JsonProperty("overview")] public string Overview { get; set; } [JsonProperty("poster_path")] public string PosterPath { get; set; } [JsonProperty("vote_average")] public double VoteAverage { get; set; } [JsonProperty("vote_count")] public int VoteCount { get; set; } } }