using System; using System.Collections.Generic; using System.Linq; using System.Text; using RainmeterStudio.Core.Model; namespace RainmeterStudio.Core.Documents.DocumentEditorFeatures { interface ISelectionPropertiesProvider { string SelectionName { get; } IEnumerable SelectionProperties { get; } event EventHandler SelectionChanged; } }