Added Budget, EndDate, HomePageUrl, ProductionLocations,

This commit is contained in:
Luke Pulverenti
2013-04-12 10:13:47 -04:00
parent 6474c64904
commit 192e1676a4
8 changed files with 147 additions and 2 deletions

View File

@@ -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.

View File

@@ -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>