using System.Collections.Generic; using InABox.Core; namespace InABox.DynamicGrid { public interface ILookupEditorControl : IDynamicEditorControl { Dictionary<string, string> OtherColumns { get; } void LoadLookups(CoreTable values); } }