|
@@ -4,7 +4,7 @@ using System;
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
{
|
|
- public class MusicVideo : Video, IHasArtist, IHasMusicGenres
|
|
|
|
|
|
+ public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasBudget
|
|
{
|
|
{
|
|
/// <summary>
|
|
/// <summary>
|
|
/// Gets or sets the artist.
|
|
/// Gets or sets the artist.
|
|
@@ -18,6 +18,18 @@ namespace MediaBrowser.Controller.Entities
|
|
/// <value>The album.</value>
|
|
/// <value>The album.</value>
|
|
public string Album { get; set; }
|
|
public string Album { get; set; }
|
|
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets or sets the budget.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <value>The budget.</value>
|
|
|
|
+ public double? Budget { get; set; }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets or sets the revenue.
|
|
|
|
+ /// </summary>
|
|
|
|
+ /// <value>The revenue.</value>
|
|
|
|
+ public double? Revenue { get; set; }
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// Determines whether the specified name has artist.
|
|
/// Determines whether the specified name has artist.
|
|
/// </summary>
|
|
/// </summary>
|