11 lines
278 B
C#
11 lines
278 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);
|
|
}
|