Files
Toolkit2/Toolkit.Foundation/NavigateEventArgs.cs
T
2024-11-17 23:09:26 +00:00

15 lines
426 B
C#

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