mirror of
https://dev.azure.com/tstanciu94/Packages/_git/Netmash
synced 2025-06-21 19:22:38 +03:00
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; }
|
|
}
|
|
}
|