pschelpdesk/Vendor/Prise/AssemblyScanning/IAssemblyScannerOptions.cs
2024-11-04 20:45:34 +01:00

12 lines
259 B
C#

using System;
using System.Collections.Generic;
namespace Prise.AssemblyScanning
{
public interface IAssemblyScannerOptions
{
string StartingPath { get; }
Type PluginType { get; }
IEnumerable<string> FileTypes { get; }
}
}