7 lines
91 B
C#
7 lines
91 B
C#
public interface ICommand
|
|
{
|
|
void execute();
|
|
void undo();
|
|
CommandDTO toDTO();
|
|
}
|