Reorganize project structure.

This commit is contained in:
2025-11-15 02:46:53 +00:00
parent 3e4677b084
commit 5d249f435e
25 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using Uno.Extensions.Navigation;
namespace Marechai.App.Presentation;
public class ShellViewModel
{
private readonly INavigator _navigator;
public ShellViewModel(
INavigator navigator)
{
_navigator = navigator;
// Add code here to initialize or attach event handlers to singleton services
}
}