Добавьте файлы проекта.
This commit is contained in:
16
SQLLinter/Common/IRuleViolation.cs
Normal file
16
SQLLinter/Common/IRuleViolation.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user