mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-18 18:14:20 +01:00
11 lines
312 B
C#
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();
|
|
}
|
|
} |