Initial refactoring to support CommandManager
This commit is contained in:
8
Filtration.ObjectModel/Commands/IUndoableCommand.cs
Normal file
8
Filtration.ObjectModel/Commands/IUndoableCommand.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Filtration.ObjectModel.Commands
|
||||
{
|
||||
internal interface IUndoableCommand : ICommand
|
||||
{
|
||||
void Undo();
|
||||
void Redo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user