Files
2023-04-20 20:37:39 +02:00

20 lines
363 B
C#

using StammGenerator.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StammGenerator.Interface
{
public interface INavigator
{
BaseViewModel CurrentViewModel
{
get;
set;
}
event Action StateChanged;
}
}