using DelftTools.Controls; namespace DelftTools.Shell.Gui { /// /// Command with reference to Gui /// public interface IGuiCommand : ICommand { IGui Gui { get; set; } } }