1using System.Windows.Input; 2 3namespace MVPtoMVVM.mvvm.viewmodels 4{ 5 public interface IObservableCommand : ICommand 6 { 7 void Changed(); 8 } 9}