mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-07 00:08:29 +01:00
Added Budget, EndDate, HomePageUrl, ProductionLocations,
This commit is contained in:
@@ -432,6 +432,34 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The overview HTML.</value>
|
||||
[ProtoMember(70)]
|
||||
public string OverviewHtml { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the end date.
|
||||
/// </summary>
|
||||
/// <value>The end date.</value>
|
||||
[ProtoMember(71)]
|
||||
public DateTime? EndDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the home page URL.
|
||||
/// </summary>
|
||||
/// <value>The home page URL.</value>
|
||||
[ProtoMember(72)]
|
||||
public string HomePageUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the production locations.
|
||||
/// </summary>
|
||||
/// <value>The production locations.</value>
|
||||
[ProtoMember(73)]
|
||||
public List<string> ProductionLocations { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the budget.
|
||||
/// </summary>
|
||||
/// <value>The budget.</value>
|
||||
[ProtoMember(73)]
|
||||
public double? Budget { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance can resume.
|
||||
|
||||
@@ -11,6 +11,11 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
AudioInfo,
|
||||
|
||||
/// <summary>
|
||||
/// The budget
|
||||
/// </summary>
|
||||
Budget,
|
||||
|
||||
/// <summary>
|
||||
/// The chapters
|
||||
/// </summary>
|
||||
@@ -31,11 +36,21 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
DisplayPreferencesId,
|
||||
|
||||
/// <summary>
|
||||
/// The end date
|
||||
/// </summary>
|
||||
EndDate,
|
||||
|
||||
/// <summary>
|
||||
/// Genres
|
||||
/// </summary>
|
||||
Genres,
|
||||
|
||||
/// <summary>
|
||||
/// The home page URL
|
||||
/// </summary>
|
||||
HomePageUrl,
|
||||
|
||||
/// <summary>
|
||||
/// Child count, recursive child count, etc
|
||||
/// </summary>
|
||||
@@ -71,6 +86,11 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
People,
|
||||
|
||||
/// <summary>
|
||||
/// The production locations
|
||||
/// </summary>
|
||||
ProductionLocations,
|
||||
|
||||
/// <summary>
|
||||
/// Imdb, tmdb, etc
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user