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; } }