RBLNews/RBLNews.Shared/Components/Pages/RefreshablePageBase.cs
2024-09-16 09:10:31 +02:00

18 lines
387 B
C#

using Microsoft.AspNetCore.Components;
namespace RBLNews.Shared.Components.Pages
{
public abstract class RefreshablePageBase : ComponentBase
{
public static RefreshablePageBase Current;
[Inject]
public NavigationManager NavigationManager { get; set; }
protected RefreshablePageBase()
{
Current = this;
}
}
}