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);
|
|
}
|
|
}
|