jellyfin/MediaBrowser.Controller/Net/IAuthService.cs

10 lines
214 B
C#
Raw Normal View History

2017-09-03 18:38:26 +00:00
using MediaBrowser.Model.Services;
namespace MediaBrowser.Controller.Net
{
public interface IAuthService
{
2017-09-03 18:38:26 +00:00
void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues);
}
}