IDocumentEditor.cs 151 B

123456789
  1. using InABox.Core;
  2. namespace InABox.DynamicGrid
  3. {
  4. public interface IDocumentEditor
  5. {
  6. IEntityDocument Document { get; set; }
  7. }
  8. }