main
1using System.Windows.Input;
2
3namespace presentation.windows
4{
5 public interface IObservableCommand : ICommand
6 {
7 void notify_observers();
8 }
9}