mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
13 lines
345 B
C#
13 lines
345 B
C#
using Uno.Extensions.Navigation;
|
|
|
|
namespace Marechai.App.Presentation.ViewModels;
|
|
|
|
public class ShellViewModel
|
|
{
|
|
private readonly INavigator _navigator;
|
|
|
|
public ShellViewModel(INavigator navigator) => _navigator = navigator;
|
|
|
|
// Users can browse the app without authentication
|
|
// Login is available from the sidebar when needed
|
|
} |