123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace InABox.Core
- {
- public interface IImportMappingGenerator
- {
- public List<ImportMapping> GenerateMappings(List<ImportMapping> mappings, ImportMappingType importType);
- }
- public interface IImportMappingGenerator<T> : IImportMappingGenerator
- {
- }
- }
|