Filtration/Filtration.ObjectModel/Commands/IUndoableCommand.cs

9 lines
154 B
C#
Raw Permalink Normal View History

namespace Filtration.ObjectModel.Commands
{
internal interface IUndoableCommand : ICommand
{
void Undo();
void Redo();
}
}