Files
marechai/Marechai.App/Presentation/ViewModels/ShellViewModel.cs

16 lines
336 B
C#
Raw Normal View History

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
}
}