ILookupEditorControl.cs 241 B

1234567891011
  1. using System.Collections.Generic;
  2. using InABox.Core;
  3. namespace InABox.DynamicGrid;
  4. public interface ILookupEditorControl : IDynamicEditorControl
  5. {
  6. ILookupEditor LookupEditorDefinition { get; }
  7. void LoadLookups(CoreTable values);
  8. }