namespace MediaBrowser.Providers.Tmdb.Models.Search
{
    public class MovieResult
    {
        /// 
        /// Gets or sets a value indicating whether this  is adult.
        /// 
        /// true if adult; otherwise, false.
        public bool Adult { get; set; }
        /// 
        /// Gets or sets the backdrop_path.
        /// 
        /// The backdrop_path.
        public string Backdrop_Path { get; set; }
        /// 
        /// Gets or sets the id.
        /// 
        /// The id.
        public int Id { get; set; }
        /// 
        /// Gets or sets the original_title.
        /// 
        /// The original_title.
        public string Original_Title { get; set; }
        /// 
        /// Gets or sets the original_name.
        /// 
        /// The original_name.
        public string Original_Name { get; set; }
        /// 
        /// Gets or sets the release_date.
        /// 
        /// The release_date.
        public string Release_Date { get; set; }
        /// 
        /// Gets or sets the poster_path.
        /// 
        /// The poster_path.
        public string Poster_Path { get; set; }
        /// 
        /// Gets or sets the popularity.
        /// 
        /// The popularity.
        public double Popularity { get; set; }
        /// 
        /// Gets or sets the title.
        /// 
        /// The title.
        public string Title { get; set; }
        /// 
        /// Gets or sets the vote_average.
        /// 
        /// The vote_average.
        public double Vote_Average { get; set; }
        /// 
        /// For collection search results
        /// 
        public string Name { get; set; }
        /// 
        /// Gets or sets the vote_count.
        /// 
        /// The vote_count.
        public int Vote_Count { get; set; }
    }
}