9 lines
154 B
C#
9 lines
154 B
C#
|
namespace Filtration.ObjectModel.Commands
|
|||
|
{
|
|||
|
internal interface IUndoableCommand : ICommand
|
|||
|
{
|
|||
|
void Undo();
|
|||
|
void Redo();
|
|||
|
}
|
|||
|
}
|