Files
SQLLint/SQLLinter/Common/IBaseReporter.cs

6 lines
99 B
C#

namespace SQLLinter.Common;
public interface IBaseReporter
{
void Report(string message);
}