mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
Added VideoInfo to DTOBaseItem
This commit is contained in:
parent
fbf8cc833c
commit
f2de85b5d9
@@ -6,7 +6,7 @@ namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
public VideoType VideoType { get; set; }
|
||||
|
||||
public IEnumerable<string> Subtitles { get; set; }
|
||||
public IEnumerable<SubtitleStream> Subtitles { get; set; }
|
||||
public IEnumerable<AudioStream> AudioStreams { get; set; }
|
||||
|
||||
public int Height { get; set; }
|
||||
@@ -25,6 +25,12 @@ namespace MediaBrowser.Model.Entities
|
||||
public int Channels { get; set; }
|
||||
public int SampleRate { get; set; }
|
||||
public bool IsDefault { get; set; }
|
||||
}
|
||||
|
||||
public class SubtitleStream
|
||||
{
|
||||
public string Language { get; set; }
|
||||
public bool IsDefault { get; set; }
|
||||
public bool IsForced { get; set; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user