using System.Collections.Generic;
using System.Reflection;
namespace Abp.Reflection
{
///
/// This interface is used to get assemblies in the application.
/// It may not return all assemblies, but those are related with modules.
///
public interface IAssemblyFinder
{
///
/// Gets all assemblies.
///
/// List of assemblies
List GetAllAssemblies();
}
}