9 lines
161 B
C#
9 lines
161 B
C#
using SQLLinter.Common;
|
|
|
|
namespace SQLLinter.Core.Interfaces;
|
|
|
|
public interface IExtendedRuleException : IRuleException
|
|
{
|
|
void SetEndLine(int endLine);
|
|
}
|