using System.Windows.Input; namespace WPFluent.Input; /// /// An interface expanding with the ability to raise the /// event externally. /// internal interface IRelayCommand : ICommand { /// /// Notifies that the property has changed. /// void NotifyCanExecuteChanged(); }