2023-01-12 01:24:39 +02:00

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; }
}
}