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

12 lines
265 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Prise.AssemblyScanning
{
public interface IAssemblyScanner : IDisposable
{
Task<IEnumerable<AssemblyScanResult>> Scan(IAssemblyScannerOptions options);
}
}