jellyfin/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 19:42:23 +02:00
void Authenticate(IRequest request,
IResponse response,
object requestDto,
2014-10-29 00:17:55 +01:00
IAuthenticated authAttribtues);
}
}