mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
15 lines
411 B
C#
15 lines
411 B
C#
using ServiceStack.Web;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
public interface IAuthorizationContext
|
|
{
|
|
/// <summary>
|
|
/// Gets the authorization information.
|
|
/// </summary>
|
|
/// <param name="requestContext">The request context.</param>
|
|
/// <returns>AuthorizationInfo.</returns>
|
|
AuthorizationInfo GetAuthorizationInfo(IRequest requestContext);
|
|
}
|
|
}
|