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