11 lines
151 B
C#
11 lines
151 B
C#
namespace SQLLinter.Common;
|
|
|
|
public interface IRuleException
|
|
{
|
|
int StartLine { get; }
|
|
|
|
int EndLine { get; }
|
|
|
|
string RuleName { get; }
|
|
}
|