Reorganize project structure.

This commit is contained in:
2025-11-15 02:46:54 +00:00
parent 5d249f435e
commit ce1c089fb0
28 changed files with 138 additions and 247 deletions

View File

@@ -1,15 +1,12 @@
using Uno.Extensions.Navigation;
namespace Marechai.App.Presentation;
namespace Marechai.App.Presentation.ViewModels;
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
}
}
public ShellViewModel(INavigator navigator) => _navigator = navigator;
// Add code here to initialize or attach event handlers to singleton services
}