From c91ea99016ce9594a9918259ed1f5e0b7bc0ce6c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 2 Jun 2014 22:01:30 -0400 Subject: more work on channel downloading --- MediaBrowser.Controller/Entities/IHasMediaSources.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 MediaBrowser.Controller/Entities/IHasMediaSources.cs (limited to 'MediaBrowser.Controller/Entities/IHasMediaSources.cs') diff --git a/MediaBrowser.Controller/Entities/IHasMediaSources.cs b/MediaBrowser.Controller/Entities/IHasMediaSources.cs new file mode 100644 index 0000000000..0b0dd1bf83 --- /dev/null +++ b/MediaBrowser.Controller/Entities/IHasMediaSources.cs @@ -0,0 +1,15 @@ +using MediaBrowser.Model.Dto; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Entities +{ + public interface IHasMediaSources + { + /// + /// Gets the media sources. + /// + /// if set to true [enable path substitution]. + /// Task{IEnumerable{MediaSourceInfo}}. + IEnumerable GetMediaSources(bool enablePathSubstitution); + } +} -- cgit v1.2.3