Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Net/IAuthService.cs

13 lines
270 B
C#
Raw Normal View History

using ServiceStack.Web;
namespace MediaBrowser.Controller.Net
{
public interface IAuthService
{
2014-09-14 13:42:23 -04:00
void Authenticate(IRequest request,
IResponse response,
object requestDto,
2014-10-28 19:17:55 -04:00
IAuthenticated authAttribtues);
}
}