mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
adding stubs for rotten tomatoes
This commit is contained in:
@@ -29,6 +29,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
TrailerUrls = new List<string>();
|
||||
Studios = new List<string>();
|
||||
People = new List<PersonInfo>();
|
||||
CriticReviews = new List<ItemReview>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -587,6 +588,18 @@ namespace MediaBrowser.Controller.Entities
|
||||
/// <value>The production locations.</value>
|
||||
public List<string> ProductionLocations { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the critic rating.
|
||||
/// </summary>
|
||||
/// <value>The critic rating.</value>
|
||||
public float? CriticRating { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the critic rating summary.
|
||||
/// </summary>
|
||||
/// <value>The critic rating summary.</value>
|
||||
public string CriticRatingSummary { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the community rating.
|
||||
/// </summary>
|
||||
@@ -622,6 +635,12 @@ namespace MediaBrowser.Controller.Entities
|
||||
/// <value>The parent index number.</value>
|
||||
public int? ParentIndexNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the critic reviews.
|
||||
/// </summary>
|
||||
/// <value>The critic reviews.</value>
|
||||
public List<ItemReview> CriticReviews { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The _local trailers
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user