using System.Reflection; namespace SQLLinter.Core.Interfaces; public interface IAssemblyWrapper { Assembly LoadFrom(string path); Type[] GetExportedTypes(Assembly assembly); }