aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Session/ISessionControllerFactory.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-25 09:39:46 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-25 09:39:46 -0500
commitbb5e6fdcad9e92b58b754075b8df2387590aeaaf (patch)
tree204cf2dd5cd66b838d58cfa0049e0cc123c6b0c3 /MediaBrowser.Controller/Session/ISessionControllerFactory.cs
parentb5fa341e084247546856683b82823dd6a23745aa (diff)
hook up roku session controller + web client layout fixes
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);
+ }
+}