IPopupEditorControl.cs 221 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. namespace InABox.DynamicGrid
  4. {
  5. public interface IPopupEditorControl : IDynamicEditorControl<Guid>
  6. {
  7. Dictionary<string, string> OtherColumns { get; }
  8. }
  9. }