aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Playback
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-01 21:44:46 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-01 21:44:46 -0500
commit7bca933af0f1b85e289306ae482db8846f94026c (patch)
treeace079674d0e11daa3dda3fb675e34efefc4880b /MediaBrowser.Controller/Playback
parent9f8aa880aa11a84eb32e1ff0066daa1c1685aab3 (diff)
added the beginning of a service stack abstraction
Diffstat (limited to 'MediaBrowser.Controller/Playback')
-rw-r--r--MediaBrowser.Controller/Playback/IIntroProvider.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/MediaBrowser.Controller/Playback/IIntroProvider.cs b/MediaBrowser.Controller/Playback/IIntroProvider.cs
deleted file mode 100644
index 1f7d12fee9..0000000000
--- a/MediaBrowser.Controller/Playback/IIntroProvider.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using MediaBrowser.Controller.Entities;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Controller.Playback
-{
- /// <summary>
- /// Class BaseIntroProvider
- /// </summary>
- public interface IIntroProvider
- {
- /// <summary>
- /// Gets the intros.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="user">The user.</param>
- /// <returns>IEnumerable{System.String}.</returns>
- IEnumerable<string> GetIntros(BaseItem item, User user);
- }
-}