14 lines
350 B
C#
14 lines
350 B
C#
using Microsoft.AspNetCore.Http;
|
|
using System;
|
|
|
|
namespace Netmash.Security.Authentication.Identity.Abstractions
|
|
{
|
|
public interface IAuthenticationOptions
|
|
{
|
|
Func<HttpRequest, bool> AuthenticateAsGuest { get; }
|
|
int GuestUserId { get; }
|
|
string GuestUserName { get; }
|
|
bool AcceptTokenFromQuery { get; }
|
|
}
|
|
}
|