using ServiceStack.Web; namespace MediaBrowser.Controller.Net { public interface IAuthorizationContext { /// /// Gets the authorization information. /// /// The request context. /// AuthorizationInfo. AuthorizationInfo GetAuthorizationInfo(IRequest requestContext); } }