mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
15 lines
397 B
C#
15 lines
397 B
C#
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
public interface ISessionContext
|
|
{
|
|
SessionInfo GetSession(object requestContext);
|
|
User GetUser(object requestContext);
|
|
|
|
SessionInfo GetSession(IServiceRequest requestContext);
|
|
User GetUser(IServiceRequest requestContext);
|
|
}
|
|
}
|