jellyfin/MediaBrowser.Controller/Net/IAuthService.cs

15 lines
319 B
C#
Raw Normal View History

using ServiceStack.Web;
2014-09-14 19:42:23 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Controller.Net
{
public interface IAuthService
{
2014-09-14 19:42:23 +02:00
void Authenticate(IRequest request,
IResponse response,
object requestDto,
bool allowLocal,
string[] roles);
}
}