mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
305 B
Plaintext
13 lines
305 B
Plaintext
|
using System.Windows.Input;
|
||
|
using Wabbajack.Messages;
|
||
|
|
||
|
namespace Wabbajack.App.Wpf.Models.NavigationItems
|
||
|
{
|
||
|
public interface INavigationItem
|
||
|
{
|
||
|
public ICommand GoToCommand { get; }
|
||
|
public NavigateToGlobal.ScreenType Screen { get; }
|
||
|
public bool MainMenuItem { get; }
|
||
|
}
|
||
|
}
|