IElementDataStore.cs 262 B

1234567891011121314
  1. using fun.Core;
  2. using System;
  3. using System.Reflection;
  4. namespace fun.IO.Data
  5. {
  6. interface IElementDataStore : IElementPropertyDataStore
  7. {
  8. void PushElement(Type type);
  9. void DepushElement();
  10. Assembly[] Assemblys { get; }
  11. }
  12. }