mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
10 lines
285 B
C#
10 lines
285 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Phantom.Server.Web.Identity.Interfaces;
|
|
|
|
public interface INavigation {
|
|
string BasePath { get; }
|
|
bool GetQueryParameter(string key, [MaybeNullWhen(false)] out string value);
|
|
void NavigateTo(string url, bool forceLoad = false);
|
|
}
|