diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-01 22:44:52 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-01 22:44:52 -0400 |
| commit | b11d06f36f31317f072e6cd1a27bd7d06b5f0c17 (patch) | |
| tree | a8144b47e8a7eb11e0e0b74b386f1e7912f420b1 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | e9cfa6cd267786f8fd97ef2aeb88941c98c8aacf (diff) | |
more work on streaming remotely
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index b3ed21b19..bac29f0f5 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -11,6 +11,13 @@ namespace MediaBrowser.Controller.Entities /// </summary> public class Video : BaseItem, IHasMediaStreams { + public Video() + { + MediaStreams = new List<MediaStream>(); + Chapters = new List<ChapterInfo>(); + PlayableStreamFileNames = new List<string>(); + } + /// <summary> /// Gets or sets the type of the video. /// </summary> |
