Added support for more Audio fields

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-19 22:05:55 -04:00
parent e0acb3a74b
commit fd2ead1aff
7 changed files with 170 additions and 13 deletions

View File

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