9 lines
149 B
C#
9 lines
149 B
C#
namespace Intromat.Interfaces
|
|
{
|
|
public interface IUndoItem
|
|
{
|
|
void Redo();
|
|
void Undo();
|
|
IFile File { get; }
|
|
}
|
|
} |