aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Session/ISessionControllerFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionControllerFactory.cs')
-rw-r--r--MediaBrowser.Controller/Session/ISessionControllerFactory.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionControllerFactory.cs b/MediaBrowser.Controller/Session/ISessionControllerFactory.cs
new file mode 100644
index 000000000..92862e462
--- /dev/null
+++ b/MediaBrowser.Controller/Session/ISessionControllerFactory.cs
@@ -0,0 +1,16 @@
+
+namespace MediaBrowser.Controller.Session
+{
+ /// <summary>
+ /// Interface ISesssionControllerFactory
+ /// </summary>
+ public interface ISessionControllerFactory
+ {
+ /// <summary>
+ /// Gets the session controller.
+ /// </summary>
+ /// <param name="session">The session.</param>
+ /// <returns>ISessionController.</returns>
+ ISessionController GetSessionController(SessionInfo session);
+ }
+}