10 lines
186 B
C#
10 lines
186 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DTS.Common.Import
|
|
{
|
|
public interface IParseImport
|
|
{
|
|
ImportObject Parse(IEnumerable<string> importFiles);
|
|
}
|
|
}
|