20 lines
371 B
C#
20 lines
371 B
C#
using SewerStammGen.ViewModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.Interface.Navigator
|
|
{
|
|
public interface INavigator
|
|
{
|
|
BaseViewModel CurrentViewModel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
event Action StateChanged;
|
|
}
|
|
}
|