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; }
}
}