using System; using System.Collections.Generic; namespace Prise.AssemblyScanning { public class AssemblyScannerOptions : IAssemblyScannerOptions { public string StartingPath { get; set; } public Type PluginType { get; set; } public IEnumerable FileTypes { get; set; } } }