Files
SQLLint/SQLLinter/Common/IRuleViolation.cs

16 lines
255 B
C#

namespace SQLLinter.Common;
public interface IRuleViolation
{
string FileName { get; }
int Column { get; set; }
int Line { get; set; }
string RuleName { get; }
RuleViolationSeverity Severity { get; }
string Text { get; }
}