Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Last active September 21, 2022 05:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gistlyn/67d7ebbef3b34cf8fa655e9d2db6e6c6 to your computer and use it in GitHub Desktop.
Save gistlyn/67d7ebbef3b34cf8fa655e9d2db6e6c6 to your computer and use it in GitHub Desktop.
blazor-upgrade
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