Files
bluflame/intromat/Intromat/Interfaces/IUndoItem.cs
2026-04-18 22:31:51 +02:00

9 lines
149 B
C#

namespace Intromat.Interfaces
{
public interface IUndoItem
{
void Redo();
void Undo();
IFile File { get; }
}
}