12 lines
132 B
C#
12 lines
132 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Common
|
|
{
|
|
public interface IUndoableAction : IAction
|
|
{
|
|
void Undo();
|
|
|
|
void Redo();
|
|
}
|
|
}
|