12 lines
275 B
C#
12 lines
275 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface INavigationScope
|
|
{
|
|
void Navigate(string route,
|
|
object? sender = null,
|
|
object? region = null,
|
|
EventHandler? navigated = null,
|
|
object[]? parameters = null);
|
|
|
|
void Back(object? region);
|
|
} |