DotBased/DotBased.ASP.Auth/BasedAuthDefaults.cs

13 lines
428 B
C#
Raw Normal View History

2024-11-04 15:45:38 +01:00
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
2024-11-02 01:57:25 +01:00
namespace DotBased.ASP.Auth;
public static class BasedAuthDefaults
{
public const string AuthenticationScheme = "DotBasedAuthentication";
2024-11-04 15:45:38 +01:00
public const string StorageKey = "dotbased_session";
public static IComponentRenderMode InteractiveServerWithoutPrerender { get; } =
new InteractiveServerRenderMode(prerender: false);
2024-11-02 01:57:25 +01:00
}