mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-30 15:34:06 +02:00
10 lines
267 B
C#
10 lines
267 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Phantom.Web.Services;
|
|
|
|
public interface INavigation {
|
|
string BasePath { get; }
|
|
bool GetQueryParameter(string key, [MaybeNullWhen(false)] out string value);
|
|
Task NavigateTo(string url, bool forceLoad = false);
|
|
}
|