aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IAuthService.cs
blob: 4c9120e0c9d97aae750c119964ba33846a07bf7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http;

namespace MediaBrowser.Controller.Net
{
    public interface IAuthService
    {
        void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues);
        User Authenticate(HttpRequest request, IAuthenticationAttributes authAttribtues);
    }
}