Добавьте файлы проекта.
This commit is contained in:
11
SQLLinter/Core/Interfaces/ISqlFileProcessor.cs
Normal file
11
SQLLinter/Core/Interfaces/ISqlFileProcessor.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user