mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
15 lines
319 B
C#
15 lines
319 B
C#
using ServiceStack.Web;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
public interface IAuthService
|
|
{
|
|
void Authenticate(IRequest request,
|
|
IResponse response,
|
|
object requestDto,
|
|
bool allowLocal,
|
|
string[] roles);
|
|
}
|
|
}
|