mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
hook up roku session controller + web client layout fixes
This commit is contained in:
16
MediaBrowser.Controller/Session/ISessionControllerFactory.cs
Normal file
16
MediaBrowser.Controller/Session/ISessionControllerFactory.cs
Normal file
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user