mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 17:44:43 +01:00
Added support for more Audio fields
This commit is contained in:
parent
e0acb3a74b
commit
fd2ead1aff
@@ -6,5 +6,10 @@ namespace MediaBrowser.Model.Entities
|
||||
public int BitRate { get; set; }
|
||||
public int Channels { get; set; }
|
||||
public int SampleRate { get; set; }
|
||||
|
||||
public string Artist { get; set; }
|
||||
public string Album { get; set; }
|
||||
public string AlbumArtist { get; set; }
|
||||
public string Composer { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user