Sic.Framework/MECF.Framework.Common/Aitex/Core/UI/MVVM/IDelegateCommand.cs

10 lines
147 B
C#

using System.Windows.Input;
namespace Aitex.Core.UI.MVVM
{
public interface IDelegateCommand : ICommand
{
void RaiseCanExecuteChanged();
}
}