jellyfin/MediaBrowser.Controller/Net/IAuthService.cs

10 lines
198 B
C#
Raw Normal View History

2014-11-15 03:31:03 +01:00

namespace MediaBrowser.Controller.Net
{
public interface IAuthService
{
2014-11-15 03:31:03 +01:00
void Authenticate(IServiceRequest request,
IAuthenticationAttributes authAttribtues);
}
}