12 lines
246 B
C#
12 lines
246 B
C#
|
|
namespace SQLLinter.Core.Interfaces;
|
|
|
|
public interface ISqlFileProcessor
|
|
{
|
|
int FileCount { get; }
|
|
|
|
void ProcessList(List<string> filePaths);
|
|
void ProcessList(Dictionary<string, Stream> files);
|
|
void ProcessPath(string path);
|
|
}
|