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

@@ -32,6 +32,7 @@ namespace MediaBrowser.Model.DTO
public int? ProductionYear { get; set; }
public int? IndexNumber { get; set; }
public int? ParentIndexNumber { get; set; }
public string TrailerUrl { get; set; }
@@ -43,6 +44,8 @@ namespace MediaBrowser.Model.DTO
public bool HasThumb { get; set; }
public bool HasPrimaryImage { get; set; }
public string Language { get; set; }
public int BackdropCount { get; set; }
public IEnumerable<DTOBaseItem> Children { get; set; }