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

13 lines
345 B
C#
Raw Normal View History

using Uno.Extensions.Navigation;
2025-11-15 02:46:54 +00:00
namespace Marechai.App.Presentation.ViewModels;
public class ShellViewModel
{
private readonly INavigator _navigator;
2025-11-15 02:46:54 +00:00
public ShellViewModel(INavigator navigator) => _navigator = navigator;
2025-11-16 20:35:00 +00:00
// Users can browse the app without authentication
// Login is available from the sidebar when needed
2025-11-15 02:46:54 +00:00
}