Files
Toolkit2/Toolkit.Foundation/Navigate.cs
T
TheXamlGuy 9f90ef693d Refactor
2024-04-26 22:27:31 +01:00

14 lines
381 B
C#

namespace Toolkit.Foundation;
public record Navigate(string Route,
object? Context = null,
string? Scope = null,
object? Sender = null,
EventHandler? Navigated = null,
object[]? Parameters = null);
public record Navigate<TNavigation>(object Context,
object Template,
object Content,
object? Sender = null,
object[]? Parameters = null);