diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/BaseItem.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/BaseItem.cs b/MediaBrowser.Model/Entities/BaseItem.cs index 69a5410b2..249dee3ac 100644 --- a/MediaBrowser.Model/Entities/BaseItem.cs +++ b/MediaBrowser.Model/Entities/BaseItem.cs @@ -54,6 +54,7 @@ namespace MediaBrowser.Model.Entities public string CustomRating { get; set; }
+ public string Language { get; set; }
public string Overview { get; set; }
public IEnumerable<string> Taglines { get; set; }
@@ -77,6 +78,11 @@ namespace MediaBrowser.Model.Entities /// </summary>
public int? IndexNumber { get; set; }
+ /// <summary>
+ /// For an episode this could be the season number, or for a song this could be the disc number.
+ /// </summary>
+ public int? ParentIndexNumber { get; set; }
+
public IEnumerable<Video> LocalTrailers { get; set; }
public string TrailerUrl { get; set; }
|
