Show initial category count

This commit is contained in:
TheXamlGuy
2024-06-15 18:37:02 +01:00
parent 7a811acde5
commit a1784d75b8
14 changed files with 123 additions and 136 deletions
+7 -1
View File
@@ -2,5 +2,11 @@
public interface INavigation
{
Type Type { get; set; }
void Navigate(string route,
object? sender = null,
object? region = null,
EventHandler? navigated = null,
IDictionary<string, object>? parameters = null);
void Back(object? region);
}