ImportMappingGenerator.cs 354 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace InABox.Core
  5. {
  6. public interface IImportMappingGenerator
  7. {
  8. public List<ImportMapping> GenerateMappings(List<ImportMapping> mappings, ImportMappingType importType);
  9. }
  10. public interface IImportMappingGenerator<T> : IImportMappingGenerator
  11. {
  12. }
  13. }