Files
SQLLint/SQLLinter/Core/Interfaces/IExtendedRuleException.cs

9 lines
161 B
C#

using SQLLinter.Common;
namespace SQLLinter.Core.Interfaces;
public interface IExtendedRuleException : IRuleException
{
void SetEndLine(int endLine);
}