diff --git a/MediaBrowser.Providers/Tmdb/Models/Search/MovieResult.cs b/MediaBrowser.Providers/Tmdb/Models/Search/MovieResult.cs index 2df15931fe..245162728b 100644 --- a/MediaBrowser.Providers/Tmdb/Models/Search/MovieResult.cs +++ b/MediaBrowser.Providers/Tmdb/Models/Search/MovieResult.cs @@ -7,59 +7,59 @@ namespace MediaBrowser.Providers.Tmdb.Models.Search /// /// 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; } + /// + /// 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; } } }