11 lines
279 B
C#
11 lines
279 B
C#
using SQLLinter.Common;
|
|
using SQLLinter.Infrastructure.Diagram;
|
|
|
|
namespace SQLLinter.Infrastructure.Reporters;
|
|
|
|
public interface IReportFormatter
|
|
{
|
|
string Format(List<IRuleViolation> violations);
|
|
string Format(List<IRuleViolation> violations, BpmnDiagram? diagram);
|
|
}
|