using System; using System.Collections.Generic; namespace InABox.DynamicGrid { public interface IPopupEditorControl : IDynamicEditorControl<Guid> { Dictionary<string, string> OtherColumns { get; } } }