aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Video.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/Video.cs')
-rw-r--r--MediaBrowser.Model/Entities/Video.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Entities/Video.cs b/MediaBrowser.Model/Entities/Video.cs
index 6fa3f56fe..874b033ac 100644
--- a/MediaBrowser.Model/Entities/Video.cs
+++ b/MediaBrowser.Model/Entities/Video.cs
@@ -6,8 +6,8 @@ namespace MediaBrowser.Model.Entities
{
public VideoType VideoType { get; set; }
- public IEnumerable<SubtitleStream> Subtitles { get; set; }
- public IEnumerable<AudioStream> AudioStreams { get; set; }
+ public List<SubtitleStream> Subtitles { get; set; }
+ public List<AudioStream> AudioStreams { get; set; }
public int Height { get; set; }
public int Width { get; set; }