20 lines
363 B
C#
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;
|
|
}
|
|
}
|