DotBased/DotBased.ASP.Authentication/BasedAuthenticationStateProvider.cs
2024-12-01 03:13:55 +01:00

11 lines
312 B
C#

using Microsoft.AspNetCore.Components.Authorization;
namespace DotBased.ASP.Authentication;
public class BasedAuthenticationStateProvider : AuthenticationStateProvider
{
public override async Task<AuthenticationState> GetAuthenticationStateAsync()
{
throw new NotImplementedException();
}
}