// // // // // $Revision: 1965 $ // using System; namespace ICSharpCode.Core { public interface ICheckableMenuCommand : IMenuCommand { bool IsChecked { get; set; } } }