using Microsoft.AspNetCore.Http; using System; namespace NDB.Security.Authentication.Identity.Abstractions { public interface IAuthenticationOptions { Func AuthenticateAsGuest { get; } int GuestUserId { get; } string GuestUserName { get; } } }