12 lines
272 B
C#
12 lines
272 B
C#
|
// File: Services/Scanners/IScanProvider.cs
|
|||
|
|
|||
|
namespace WebmrAPI.Services.Scanners
|
|||
|
{
|
|||
|
public interface IScanProvider
|
|||
|
{
|
|||
|
public bool ProcessReadAccess { get; }
|
|||
|
public ILogger Logger { get; }
|
|||
|
public int GetTimeout(ScanTarget target);
|
|||
|
}
|
|||
|
}
|