using SQLLinter.Common; using SQLLinter.Core.Interfaces; namespace SQLLinter.Infrastructure.Configuration { public class Config : IConfig { public int CompatibilityLevel { get; set; } public Dictionary Rules { get; set; } = new(); public List Plugins { get; set; } = new(); public bool GenerateDetails { get; set; } = false; } }