jellyfin/MediaBrowser.Controller/Net/IAuthService.cs
2014-09-14 13:42:23 -04:00

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