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