10 lines
217 B
C#
10 lines
217 B
C#
using ServiceStack.Web;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
public interface IAuthService
|
|
{
|
|
void Authenticate(IRequest request, IResponse response, object requestDto, bool allowLocal);
|
|
}
|
|
}
|