using System.Collections.Generic; using System.Reflection; namespace Umbraco.Core.Composing { /// /// Provides a list of assemblies that can be scanned /// public interface IAssemblyProvider { IEnumerable Assemblies { get; } } }