diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-07 16:03:09 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-07 16:03:09 -0500 |
| commit | 9110d23710980eecc112753af46f7fcda7558364 (patch) | |
| tree | 91582bcfd727600f8b9f3c2a6815899891c098ac /MediaBrowser.Controller/Library/IMediaSourceManager.cs | |
| parent | 49c0878a4b295e7882613b989953f2c753fc8bca (diff) | |
added SupportsExternalStream to MediaStream
Diffstat (limited to 'MediaBrowser.Controller/Library/IMediaSourceManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IMediaSourceManager.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IMediaSourceManager.cs b/MediaBrowser.Controller/Library/IMediaSourceManager.cs new file mode 100644 index 000000000..4378bc85d --- /dev/null +++ b/MediaBrowser.Controller/Library/IMediaSourceManager.cs @@ -0,0 +1,11 @@ +using MediaBrowser.Controller.Persistence; +using MediaBrowser.Model.Entities; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Library +{ + public interface IMediaSourceManager + { + IEnumerable<MediaStream> GetMediaStreams(MediaStreamQuery query); + } +} |
