Files
OemanTrader/OemanTrader.WPF/State/Navigators/INavigator.cs
2022-05-26 15:19:31 +02:00

22 lines
451 B
C#

using OemanTrader.WPF.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace OemanTrader.WPF.State.Navigators
{
public enum ViewType
{
Home,
Portfolio
}
public interface INavigator
{
ViewModelBase CurrentViewModel { get; set; }
ICommand UpdateCurrentViewModelCommand { get; }
}
}