8 lines
115 B
C#
8 lines
115 B
C#
namespace Filtration.ObjectModel.Commands
|
|
{
|
|
public interface ICommand
|
|
{
|
|
void Execute();
|
|
}
|
|
}
|