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

14 lines
318 B
C#

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<string> FileTypes { get; set; }
}
}