mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
13 lines
374 B
C#
13 lines
374 B
C#
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Services;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
public interface IAuthService
|
|
{
|
|
void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues);
|
|
User Authenticate(HttpRequest request, IAuthenticationAttributes authAttribtues);
|
|
}
|
|
}
|