Add initial project structure and configuration files for Marechai.App

This commit is contained in:
2025-11-14 01:50:56 +00:00
parent f85dc22bf6
commit cf24356030
50 changed files with 1875 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
}
}