Files
Toolkit2/Toolkit.Foundation/NavigateEventArgs.cs
T
2024-05-16 22:30:01 +01:00

14 lines
392 B
C#

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