IAuthService.cs 319 B

1234567891011121314
  1. using ServiceStack.Web;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Net
  4. {
  5. public interface IAuthService
  6. {
  7. void Authenticate(IRequest request,
  8. IResponse response,
  9. object requestDto,
  10. bool allowLocal,
  11. string[] roles);
  12. }
  13. }