// -------------------------------------------------------------------------------------------------------------------- // // Jamie Dixon // // // Defines the ICommand interface. // // -------------------------------------------------------------------------------------------------------------------- namespace GraphVizWrapper.Commands { public interface ICommand { void Invoke(); } }