IHasAuthorization.cs 313 B

123456789101112
  1. 
  2. namespace MediaBrowser.Controller.Net
  3. {
  4. public interface IHasAuthorization
  5. {
  6. /// <summary>
  7. /// Gets or sets the authorization context.
  8. /// </summary>
  9. /// <value>The authorization context.</value>
  10. IAuthorizationContext AuthorizationContext { get; set; }
  11. }
  12. }