10 lines
170 B
C#
10 lines
170 B
C#
using System.Windows.Input;
|
|
|
|
namespace eSuite.Workbench.WpfHelper
|
|
{
|
|
public interface IRelayCommand : ICommand
|
|
{
|
|
void RaiseCanExecuteChanged();
|
|
}
|
|
}
|