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