aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IAuthService.cs
blob: 9d335566ff51af575a7cf9a7e86cdc0c7f7905a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using ServiceStack.Web;

namespace MediaBrowser.Controller.Net
{
    public interface IAuthService
    {
        void Authenticate(IRequest request, 
            IResponse response, 
            object requestDto, 
            IAuthenticated authAttribtues);
    }
}