namespace SQLLinter.Core.Interfaces; public interface ISqlFileProcessor { int FileCount { get; } void ProcessList(List filePaths); void ProcessList(Dictionary files); void ProcessPath(string path); }