Last active
September 21, 2022 05:00
-
-
Save gistlyn/67d7ebbef3b34cf8fa655e9d2db6e6c6 to your computer and use it in GitHub Desktop.
blazor-upgrade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Extensions.Logging; | |
using ServiceStack; | |
using ServiceStack.Blazor; | |
namespace MyApp; | |
/// <summary> | |
/// Manages App Authentication State | |
/// </summary> | |
public class ServiceStackStateProvider : ServiceStackAuthenticationStateProvider | |
{ | |
public ServiceStackStateProvider(JsonApiClient client, ILogger<ServiceStackAuthenticationStateProvider> log) | |
: base(client, log) { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment