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