Add foundation

This commit is contained in:
TheXamlGuy
2024-04-13 11:29:32 +01:00
parent 6f31aa8513
commit 053d8a851e
264 changed files with 3428 additions and 4683 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace Toolkit.Foundation;
public record Navigate(string Route,
object? Context = null,
string? Scope = null,
object? Sender = null,
EventHandler? Navigated = null,
object[]? Parameters = null) :
INotification;
public record Navigate<TNavigation>(object Context,
object Template,
object Content,
object? Sender = null,
object[]? Parameters = null) :
INotification;