mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +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();
|
||
|
}
|
||
|
}
|