aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IAuthService.cs
blob: 142f1d91c3e6ba0f9388c6235d9018f4089c4c2d (plain)
1
2
3
4
5
6
7
8
9
using MediaBrowser.Model.Services;

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