11 lines
122 B
C#
11 lines
122 B
C#
|
using System;
|
||
|
|
||
|
namespace CommandUndoRedo
|
||
|
{
|
||
|
public interface ICommand
|
||
|
{
|
||
|
void Execute();
|
||
|
void UnExecute();
|
||
|
}
|
||
|
}
|