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