10 lines
221 B
C#
10 lines
221 B
C#
|
|
namespace SQLLinter.Core.Interfaces;
|
|
|
|
public interface ISqlDiagramProcessor
|
|
{
|
|
void ProcessList(List<string> filePaths);
|
|
void ProcessList(Dictionary<string, Stream> files);
|
|
void ProcessPath(string path);
|
|
}
|