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