netmash/Netmash.Security.Authentica.../Abstractions/IAuthenticationOptions.cs

14 lines
350 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Http;
using System;
2023-01-12 01:01:36 +02:00
namespace Netmash.Security.Authentication.Identity.Abstractions
{
public interface IAuthenticationOptions
{
Func<HttpRequest, bool> AuthenticateAsGuest { get; }
int GuestUserId { get; }
string GuestUserName { get; }
bool AcceptTokenFromQuery { get; }
}
}