Files
SQLLint/SQLLinter/Common/IRuleException.cs

11 lines
151 B
C#

namespace SQLLinter.Common;
public interface IRuleException
{
int StartLine { get; }
int EndLine { get; }
string RuleName { get; }
}